Apply all pending changes excluding .sops.yaml
This commit is contained in:
parent
7b04942bb2
commit
89929ac69a
20 changed files with 439 additions and 167 deletions
8
justfile
8
justfile
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue