blob: 163d33982172537d90f254613787b8b9ad9801fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
alias b := build
alias c := check
alias dr := dry-run
alias sw := switch
alias t := test
alias u := update
alias ui := update-input
rebuildArgs := "--verbose"
rebuild := if os() == "macos" { "darwin-rebuild" } else { "nixos-rebuild" }
default:
@just --choose
[private]
rebuild subcmd *extraArgs="":
{{ rebuild }} {{ subcmd }} {{ rebuildArgs }} --flake . {{ extraArgs }}
boot *extraArgs="": (rebuild "boot" extraArgs)
build *extraArgs="": (rebuild "build" extraArgs)
dry-run *extraArgs="": (rebuild "dry-run" extraArgs)
switch *extraArgs="": (rebuild "switch" extraArgs)
test *extraArgs="": (rebuild "test" extraArgs)
check *args="":
nix flake check \
--print-build-logs \
--show-trace \
--accept-flake-config \
{{ args }}
eval system *args="":
nix eval \
--raw \
'.#nixosConfigurations.{{ system }}.config.system.build.toplevel' \
--no-allow-import-from-derivation \
{{ args }}
update:
nix flake update \
--commit-lock-file \
--commit-lockfile-summary "flake: update all inputs"
update-input input:
nix flake update {{ input }} \
--commit-lock-file \
--commit-lockfile-summary "flake: update {{ input }}"
deploy system:
nix run '.#{{ system }}'
|