diff options
Diffstat (limited to '')
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | justfile | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -10,3 +10,4 @@ /*.qcow2 bin/ /.direnv/ +/secrets/ @@ -22,21 +22,25 @@ fmt: nix fmt [group('machines')] +[doc('build the configuration for the current host')] [macos] build: darwin-rebuild build --flake .#{{hostname}} [group('machines')] +[doc('switch the configuration for the current host')] [macos] switch: darwin-rebuild switch --flake .#{{hostname}} [group('machines')] +[doc('build the configuration for the current host')] [linux] build: nixos-rebuild build --flake .#{{hostname}} [group('machines')] +[doc('switch the configuration for the current host')] [linux] switch: nixos-rebuild switch --flake .#{{hostname}} |
