aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/home/suites/dev/default.nix1
-rw-r--r--modules/home/tools/default.nix3
2 files changed, 4 insertions, 0 deletions
diff --git a/modules/home/suites/dev/default.nix b/modules/home/suites/dev/default.nix
index 710f627..fb9fc24 100644
--- a/modules/home/suites/dev/default.nix
+++ b/modules/home/suites/dev/default.nix
@@ -27,6 +27,7 @@ in {
tmux.enable = true;
mkenv.enable = true;
neovim.enable = true;
+ serve.enable = true;
fork.enable = desktop.enable;
};
};
diff --git a/modules/home/tools/default.nix b/modules/home/tools/default.nix
index 698ff5e..4192690 100644
--- a/modules/home/tools/default.nix
+++ b/modules/home/tools/default.nix
@@ -23,5 +23,8 @@ with lib; with lib.${namespace}; {
(mkSimpleTool "fork" {
packages = [ cxl.fork ];
})
+ (mkSimpleTool "serve" {
+ packages = [ cxl.serve ];
+ })
];
}