mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2026-01-31 08:30:25 +00:00
- Replaced bin/ shell scripts with a Justfile - Added deploy commands and 2 new commands (update, gc) - Added just to devShell
21 lines
400 B
Makefile
21 lines
400 B
Makefile
#!/usr/bin/env -S just --justfile
|
|
|
|
default:
|
|
@just --list
|
|
|
|
deploy-nixos:
|
|
sudo nixos-rebuild switch --flake .#$(hostname)
|
|
|
|
deploy-vps:
|
|
nixos-rebuild switch --flake .#vps --target-host root@vps
|
|
|
|
deploy-home:
|
|
home-manager switch --flake .#$USER@$(hostname)
|
|
|
|
update:
|
|
nix flake update --commit-lock-file
|
|
|
|
gc:
|
|
nix-collect-garbage -d
|
|
nix-collect-garbage --delete-older-than 7d
|
|
nix-store --gc
|