feat: enable gdm

This commit is contained in:
buffet 2024-01-26 13:36:14 +01:00
parent e3625bf75c
commit 54e47ff604
2 changed files with 10 additions and 0 deletions

View file

@ -15,6 +15,7 @@
./borg.nix ./borg.nix
./earlyoom.nix ./earlyoom.nix
./gdm.nix
./gpg.nix ./gpg.nix
./keyd.nix ./keyd.nix
./pipewire.nix ./pipewire.nix

9
hosts/alice/gdm.nix Normal file
View file

@ -0,0 +1,9 @@
_: {
services.xserver = {
enable = true;
displayManager.gdm = {
enable = true;
wayland = true;
};
};
}