summaryrefslogtreecommitdiff
path: root/home/desktop/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/desktop/default.nix')
-rw-r--r--home/desktop/default.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/home/desktop/default.nix b/home/desktop/default.nix
new file mode 100644
index 0000000..1608693
--- /dev/null
+++ b/home/desktop/default.nix
@@ -0,0 +1,14 @@
+{ config, lib, pkgs, ... }:
+with lib; let
+ cfg = config.local.desktop;
+in
+{
+ imports = [
+ ./firefox.nix
+ ./sway.nix
+ ];
+
+ options.local.desktop = {
+ enable = mkEnableOption "desktop";
+ };
+}