mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-02-07 09:52:50 +00:00
24 lines
448 B
Makefile
24 lines
448 B
Makefile
|
default:
|
||
|
@just --list
|
||
|
|
||
|
rebuild host operation:
|
||
|
@cd nixos/ && sudo nixos-rebuild {{operation}} --flake .#{{host}} && cd ..
|
||
|
|
||
|
switch host:
|
||
|
@just rebuild {{host}} switch
|
||
|
|
||
|
clean:
|
||
|
sudo nix-env --profile /nix/var/nix/profiles/system --delete-generations old
|
||
|
nix-collect-garbage -d
|
||
|
nix store optimise
|
||
|
|
||
|
push:
|
||
|
git status
|
||
|
@git add .
|
||
|
@git commit -m "~"
|
||
|
git push
|
||
|
|
||
|
# run `switch` on default host
|
||
|
sd:
|
||
|
@just switch qemu
|