summaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
Diffstat (limited to 'nixos')
-rw-r--r--nixos/kusanagi.nix1
-rw-r--r--nixos/xfce.nix8
2 files changed, 9 insertions, 0 deletions
diff --git a/nixos/kusanagi.nix b/nixos/kusanagi.nix
index 1a4a662..d030e97 100644
--- a/nixos/kusanagi.nix
+++ b/nixos/kusanagi.nix
@@ -21,6 +21,7 @@ in
(modulesPath + "/installer/scan/not-detected.nix")
./common.nix
./sway.nix
+ ./xfce.nix
(import "${home-manager}/nixos")
];
diff --git a/nixos/xfce.nix b/nixos/xfce.nix
new file mode 100644
index 0000000..e3bf99e
--- /dev/null
+++ b/nixos/xfce.nix
@@ -0,0 +1,8 @@
+{ config, pkgs, ... }: {
+ services.xserver.enable = true;
+ services.xserver.desktopManager.xfce.enable = true;
+
+ environment.systemPackages = with pkgs; [
+ xorg.xinit
+ ];
+}