aboutsummaryrefslogtreecommitdiffstats
path: root/flake
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--flake.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 4b05e87d..5fddd222 100644
--- a/flake.nix
+++ b/flake.nix
@@ -76,6 +76,10 @@
inherit pkgs;
inherit (inputs) shell-library;
};
+ setup = import ./bootstrap/setup {
+ inherit pkgs;
+ inherit (inputs) shell-library;
+ };
};
apps."${system}" = {
@@ -87,6 +91,10 @@
type = "app";
program = "${self.packages."${system}".activate}/bin/activate";
};
+ setup = {
+ type = "app";
+ program = "${self.packages."${system}".setup}/bin/setup";
+ };
default = self.apps."${system}".activate;
};
};