mirror of
https://github.com/Superredstone/nixos.git
synced 2026-06-17 15:24:39 +02:00
refactor(de): move plasma config to separate file
This commit is contained in:
@@ -9,7 +9,8 @@
|
||||
|
||||
]
|
||||
++ (if currentSystemDe == "niri" then [ ./niri.nix ] else [ ])
|
||||
++ (if currentSystemDe == "gnome" then [ ./gnome.nix ] else [ ]);
|
||||
++ (if currentSystemDe == "gnome" then [ ./gnome.nix ] else [ ])
|
||||
++ (if currentSystemDe == "plasma" then [ ./plasma.nix ] else [ ]);
|
||||
|
||||
programs = {
|
||||
gamescope = {
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
services = {
|
||||
displayManager.sddm = {
|
||||
enable = true;
|
||||
wayland.enable = true;
|
||||
};
|
||||
desktopManager.plasma6.enable = true;
|
||||
};
|
||||
|
||||
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
||||
elisa
|
||||
konsole
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user