seems right

This commit is contained in:
unexplrd
2025-02-06 14:23:13 +02:00
parent 2e6e28ef32
commit d76e7f4f71
10 changed files with 88 additions and 92 deletions

View File

@ -1,6 +1,5 @@
{
config,
pkgs,
lib,
...
}:
@ -8,7 +7,7 @@ with lib; let
cfg = config.desktop.plasma;
in {
imports = [
./misc/sound.nix
./common/pipewire.nix
];
options = {
desktop.plasma = {
@ -17,12 +16,13 @@ in {
};
};
config = mkIf cfg.enable {
services.displayManager.sddm = {
enable = cfg.sddmEnable;
wayland.enable = true;
services = {
desktopManager.plasma6.enable = true;
displayManager.sddm = {
enable = cfg.sddmEnable;
wayland.enable = true;
};
};
services.desktopManager.plasma6.enable = true;
fonts.fontDir.enable = true;
};
}