diff options
| author | Caroline Larimore <caroline@larimo.re> | 2026-02-21 12:35:55 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2026-02-21 12:35:55 -0800 |
| commit | caf7f49d50e8706adb4f60097f89d898b806da20 (patch) | |
| tree | d9c77ec49933fdcb16cabc025d2b63d1b03fe2d1 /modules/home | |
| parent | 20a979a16a693c9489bf0c628e1eed120daffbda (diff) | |
script: python http server
Diffstat (limited to 'modules/home')
| -rw-r--r-- | modules/home/suites/dev/default.nix | 1 | ||||
| -rw-r--r-- | modules/home/tools/default.nix | 3 |
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 ]; + }) ]; } |