hosts/dunamis/configuration.nix: simplify

hosts/dunamis/users/user/home-configuration.nix: simplify
hosts/dunamis/users.nix: simplify
modules/nixos/desktop/plasma.nix: simplify

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-03-30 15:22:47 +03:00
parent 99b62d5194
commit 0b99f0dbd3
4 changed files with 7 additions and 21 deletions

View File

@ -12,14 +12,14 @@ in {
options = {
desktop.plasma = {
enable = mkEnableOption "enable plasma desktop";
sddmEnable = mkEnableOption "enable simple display manager";
# sddmEnable = mkEnableOption "enable simple display manager";
};
};
config = mkIf cfg.enable {
services = {
desktopManager.plasma6.enable = true;
displayManager.sddm = {
enable = cfg.sddmEnable;
enable = true; # cfg.sddmEnable;
wayland.enable = true;
};
};