Apply all pending changes excluding .sops.yaml

This commit is contained in:
Don Harper 2026-05-05 14:20:58 -05:00
parent 7b04942bb2
commit 89929ac69a
20 changed files with 439 additions and 167 deletions

View file

@ -1,5 +1,5 @@
HOSTNAME := `hostname -s`
nixcmd := "nix --extra-experimental-features flakes --extra-experimental-features nix-command"
nixcmd := "nix --extra-experimental-features nix-command"
# Do as test build without installing
test hostname=(HOSTNAME):
@ -72,6 +72,12 @@ update:
@{{nixcmd}} flake update &> nixos-switch.log || ( cat nixos-switch.log && false )
@rm -f nixos-switch.log
# Check flake configuration
check:
@echo "Checking flake configuration"
@{{nixcmd}} flake check &> nixos-switch.log || ( cat nixos-switch.log && false )
@rm -f nixos-switch.log
# Clean up
clean hostname=(HOSTNAME):
@echo "Cleaning old entries and store"