bump desktop, remove gnome, add kde, remove niri from desktop

This commit is contained in:
jingus 2026-05-31 02:51:29 -05:00
parent 044c66152c
commit 3f90a28221
4 changed files with 64 additions and 398 deletions

View file

@ -10,7 +10,7 @@
self.nixosModules.gaming
self.nixosModules.development
self.nixosModules.desktopHardware
self.nixosModules.niri
# self.nixosModules.niri
self.nixosModules.contentCreation
self.nixosModules.communications
# self.nixosModules.hyprland-noctalia
@ -22,12 +22,20 @@
programs.firefox.enable = true;
programs.zsh.enable = true;
# Enable KDE
services.desktopManager.plasma6.enable = true;
services.displayManager.ly.enable = true;
services.xserver.enable = true; # technically deprecated but still useful sometimes
# Enable Gnome and GDM for login management and some decent default apps
services.displayManager.gdm.enable = true;
services.desktopManager.gnome.enable = true;
# services.displayManager.gdm.enable = true;
# services.desktopManager.gnome.enable = true;
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
nixpkgs.config.permittedInsecurePackages = [
"nodejs-20.20.2" # stupid
];
virtualisation.libvirtd.enable = true;
programs.virt-manager.enable = true;
@ -44,6 +52,7 @@
(element-desktop.override {
commandLineArgs = "--password-store=gnome-libsecret";
})
obsidian
];
nix.settings.experimental-features = [
@ -90,6 +99,6 @@
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "25.11"; # Did you read the comment?
system.stateVersion = "26.05"; # Did you read the comment?
};
}