diff --git a/modules/hyprland.nix b/modules/hyprland.nix index 11fdadba..7f29978f 100644 --- a/modules/hyprland.nix +++ b/modules/hyprland.nix @@ -1,27 +1,27 @@ { config, pkgs, ... }: { - imports = - [ # Include X settings. - ./desktop.nix - ]; + imports = [ # Include X settings. + ./desktop.nix + ]; - programs.hyprland.enable = true; - services.power-profiles-daemon.enable = true; - services.upower.enable = true; + services.xserver.displayManager.lightdm = { + 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.thunar = { - enable = true; - plugins = with pkgs.xfce; [ - thunar-archive-plugin - thunar-volman - ]; - }; - services.gvfs.enable = true; # Mount, trash, and other functionalities - services.tumbler.enable = true; # Thumbnail support for images + programs.xfconf.enable = true; + programs.thunar = { + enable = true; + plugins = with pkgs.xfce; [ thunar-archive-plugin thunar-volman ]; + }; + 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"; }