diff options
| author | seth <[email protected]> | 2023-01-27 19:00:57 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-01-27 19:00:57 -0500 |
| commit | 41c65ffeee4edccb2855c7736b5761a3f27583a3 (patch) | |
| tree | 7478ae8ec5fd12dc5a30851d79dc70d73f7bdbd8 /hosts/common/desktop/plasma.nix | |
| parent | 59c1c77eabb8a299eacde600ff0992789f4c25bc (diff) | |
add profile for plasma + use firefox by default
Diffstat (limited to 'hosts/common/desktop/plasma.nix')
| -rw-r--r-- | hosts/common/desktop/plasma.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/hosts/common/desktop/plasma.nix b/hosts/common/desktop/plasma.nix new file mode 100644 index 0000000..ddd3a28 --- /dev/null +++ b/hosts/common/desktop/plasma.nix @@ -0,0 +1,19 @@ +{pkgs, ...}: { + imports = [ + ./. + ]; + + services.xserver = { + displayManager.sddm.enable = true; + desktopManager.plasma5 = { + enable = true; + excludePackages = with pkgs.libsForQt5; [ + elisa + khelpcenter + oxygen + plasma-browser-integration + print-manager + ]; + }; + }; +} |
