diff options
Diffstat (limited to 'flake/apps')
-rw-r--r-- | flake/apps/default.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/flake/apps/default.nix b/flake/apps/default.nix new file mode 100644 index 00000000..f1709c71 --- /dev/null +++ b/flake/apps/default.nix @@ -0,0 +1,23 @@ +{ + self, + system, + ... +}: { + install = { + type = "app"; + program = "${self.packages."${system}".install}/bin/install"; + }; + activate = { + type = "app"; + program = "${self.packages."${system}".activate}/bin/activate"; + }; + setup = { + type = "app"; + program = "${self.packages."${system}".setup}/bin/setup"; + }; + config_setup = { + type = "app"; + program = "${self.packages."${system}".config_setup}/bin/config_setup"; + }; + default = self.apps."${system}".activate; +} |