about summary refs log tree commit diff stats
path: root/flake/apps/default.nix
blob: f1709c71cb51c900cca241194b9b9c926503b270 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
}