all repos — flake @ 93eeeb7931d5df4736cc2d8ed0976113c3a05e4f

got my cool flake

justfile (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
_default:
    @just --list --unsorted

build HOST *args:
    sudo nixos-rebuild build --flake .#{{ HOST }} {{ args }}

switch HOST *args:
    sudo nixos-rebuild switch --flake .#{{ HOST }} {{ args }}

boot HOST *args:
    sudo nixos-rebuild boot --flake .#{{ HOST }} {{ args }}

update:
    nix flake update

check:
    nix flake check