feat: seperate applicatoins

This commit is contained in:
Jet 2026-06-03 19:29:33 -07:00
parent 515f422f03
commit 5bc30053d1
No known key found for this signature in database
9 changed files with 220 additions and 130 deletions

View file

@ -105,11 +105,16 @@
sudo -v || exit $?
nh os switch --hostname "$(${pkgs.hostname}/bin/hostname)" path:. "$@"
'';
nhb = pkgs.writeShellScriptBin "nhb" ''
sudo -v || exit $?
nh os boot --hostname "$(${pkgs.hostname}/bin/hostname)" path:. "$@"
'';
in
pkgs.mkShell {
packages = [
pkgs.nh
inputs.agenix.packages.x86_64-linux.default
nhb
nhs
];
};