summaryrefslogtreecommitdiff
path: root/hosts/common/desktop/plasma.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-01-27 19:00:57 -0500
committerseth <[email protected]>2023-01-27 19:00:57 -0500
commit41c65ffeee4edccb2855c7736b5761a3f27583a3 (patch)
tree7478ae8ec5fd12dc5a30851d79dc70d73f7bdbd8 /hosts/common/desktop/plasma.nix
parent59c1c77eabb8a299eacde600ff0992789f4c25bc (diff)
add profile for plasma + use firefox by default
Diffstat (limited to 'hosts/common/desktop/plasma.nix')
-rw-r--r--hosts/common/desktop/plasma.nix19
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
+ ];
+ };
+ };
+}