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.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/home/desktop/default.nix b/home/desktop/default.nix
new file mode 100644
index 0000000..d46e97e
--- /dev/null
+++ b/home/desktop/default.nix
@@ -0,0 +1,18 @@
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
+with lib; let
+ cfg = config.local.desktop;
+in {
+ imports = [
+ ./firefox.nix
+ ./sway.nix
+ ];
+
+ options.local.desktop = {
+ enable = mkEnableOption "desktop";
+ };
+}