summary refs log tree commit diff stats
path: root/desktop/plasma.nix
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-01-08 19:30:04 +0100
committersils <sils@sils.li>2023-01-08 19:30:04 +0100
commite70b7da28c7590a594ab209e959a5bc135e61811 (patch)
tree26eb976e5b08f0e27c0efb785c3647e49d177d82 /desktop/plasma.nix
parentswitch away from temp-root (diff)
downloadnix-config-e70b7da28c7590a594ab209e959a5bc135e61811.tar.gz
nix-config-e70b7da28c7590a594ab209e959a5bc135e61811.zip
introduce alejandra
Diffstat (limited to '')
-rw-r--r--desktop/plasma.nix16
1 files changed, 9 insertions, 7 deletions
diff --git a/desktop/plasma.nix b/desktop/plasma.nix
index 412e3d3..75e5be1 100644
--- a/desktop/plasma.nix
+++ b/desktop/plasma.nix
@@ -1,9 +1,11 @@
-{ config, pkgs, ... }:
-
 {
-	services.xserver = {
-		enable = true;
-		displayManager.sddm.enable = true;
-		desktopManager.plasma5.enable = true;
-	};
+  config,
+  pkgs,
+  ...
+}: {
+  services.xserver = {
+    enable = true;
+    displayManager.sddm.enable = true;
+    desktopManager.plasma5.enable = true;
+  };
 }