This commit is contained in:
41666 2023-12-26 23:37:51 -05:00
parent 3ee4f33af2
commit 55d81d39e9
6 changed files with 248 additions and 60 deletions

View file

@ -64,6 +64,7 @@
settings = {
experimental-features = "nix-command flakes";
#auto-optimize-store = true;
trusted-users = [ "root" "@wheel" ];
};
};

View file

@ -1,11 +1,19 @@
{ pkgs, ... }: {
{ pkgs, inputs, ... }: {
#imports = [
# inputs.kde2nix.nixosModules.plasma6
#];
services.xserver = {
enable = true;
displayManager.sddm = {
enable = true;
wayland.enable = true;
};
desktopManager.plasma5.enable = true;
desktopManager.plasma5 = {
enable = true;
};
};
programs.xwayland.enable = true;
}