more or less wayland support

This commit is contained in:
CDaut 2024-04-25 09:33:20 +02:00
parent ada74f1c4e
commit 87f9fb7bb6
Signed by: clara
GPG key ID: 223391B52FAD4463
6 changed files with 188 additions and 7 deletions

View file

@ -44,15 +44,15 @@
LC_TIME = "de_DE.UTF-8";
};
services.displayManager.defaultSession = "none+i3";
imports = [
./programm_configs/yubikey-gpg.nix
./printing/config.nix
] ++ (if inputs.x11mode then
[ ./programm_configs/x11.nix ]
else [ ]);
else [
./programm_configs/wayland.nix
]);
services.gvfs.enable = true;
@ -118,6 +118,9 @@
x11mode = inputs.x11mode;
});
# enable polkit
security.polkit.enable = true;
# Allow unfree packages
nixpkgs.config.allowUnfree = true;