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,11 +1,14 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
imports = imports = [ # Include X settings.
[ # Include X settings.
./desktop.nix ./desktop.nix
]; ];
services.xserver.displayManager.lightdm = {
enable = true;
greeters.slick.enable = true;
};
programs.hyprland.enable = true; programs.hyprland.enable = true;
services.power-profiles-daemon.enable = true; services.power-profiles-daemon.enable = true;
services.upower.enable = true; services.upower.enable = true;
@ -15,10 +18,7 @@
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.gvfs.enable = true; # Mount, trash, and other functionalities
services.tumbler.enable = true; # Thumbnail support for images services.tumbler.enable = true; # Thumbnail support for images