summary refs log tree commit diff stats
path: root/sys/desktop/xfce
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-05-04 18:17:38 +0200
committersils <sils@sils.li>2023-05-04 18:17:38 +0200
commit4eaf76cf1e0af9ec7a630320bb7d4956041dd03e (patch)
tree4073ad033ef5f0939e76bb82a75847b34ca4bba9 /sys/desktop/xfce
parentChore(flake): Update (diff)
downloadnix-config-4eaf76cf1e0af9ec7a630320bb7d4956041dd03e.tar.gz
nix-config-4eaf76cf1e0af9ec7a630320bb7d4956041dd03e.zip
Structure(treewide): Use new structure with home-manager
                     home-manager enables great possibilities and is
                     part of simplifying the structure of my config.
Diffstat (limited to 'sys/desktop/xfce')
-rw-r--r--sys/desktop/xfce/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/desktop/xfce/default.nix b/sys/desktop/xfce/default.nix
new file mode 100644
index 0000000..b0de71a
--- /dev/null
+++ b/sys/desktop/xfce/default.nix
@@ -0,0 +1,9 @@
+{...}: {
+  services = {
+    blueman.enable = true;
+    xserver = {
+      enable = true;
+      desktopManager.xfce.enable = true;
+    };
+  };
+}