flake/nixinate: use apps/flakes directly

This commit is contained in:
Felix Buehler 2024-11-08 00:19:17 +01:00
parent 8b8cdbda51
commit 94c76cd197
2 changed files with 3 additions and 3 deletions

View file

@ -35,7 +35,7 @@ used flakes:
- deployment/update:
```bash
nix run .#apps.nixinate.<flake>
nix run .#<flake>
```
- secrets:

View file

@ -112,8 +112,8 @@
inputs'.disko.packages.disko
];
};
# workaround for https://github.com/MatthewCroughan/nixinate/issues/12
apps = (nixinate.nixinate.${system} self).nixinate;
};
# flake = {};
flake.apps = inputs.nixinate.nixinate."x86_64-linux" self;
};
}