hyprland: added lightdm slick greeter

This commit is contained in:
Aly Raffauf 2024-03-24 19:17:29 -04:00
parent becbe7ef62
commit 311b0acae4

View file

@ -1,27 +1,27 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
imports = imports = [ # Include X settings.
[ # Include X settings. ./desktop.nix
./desktop.nix ];
];
programs.hyprland.enable = true; services.xserver.displayManager.lightdm = {
services.power-profiles-daemon.enable = true; enable = true;
services.upower.enable = true; greeters.slick.enable = true;
};
programs.hyprland.enable = true;
services.power-profiles-daemon.enable = true;
services.upower.enable = true;
services.gnome.gnome-keyring.enable = true; services.gnome.gnome-keyring.enable = true;
programs.xfconf.enable = true; programs.xfconf.enable = true;
programs.thunar = { programs.thunar = {
enable = true; enable = true;
plugins = with pkgs.xfce; [ plugins = with pkgs.xfce; [ thunar-archive-plugin thunar-volman ];
thunar-archive-plugin };
thunar-volman services.gvfs.enable = true; # Mount, trash, and other functionalities
]; services.tumbler.enable = true; # Thumbnail support for images
};
services.gvfs.enable = true; # Mount, trash, and other functionalities
services.tumbler.enable = true; # Thumbnail support for images
environment.sessionVariables.NIXOS_OZONE_WL = "1"; environment.sessionVariables.NIXOS_OZONE_WL = "1";
} }