summaryrefslogtreecommitdiff
path: root/justfile
blob: 833e151297aa7bfb33bd5305dea75e8e69e1bbe0 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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 .

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' \
      {{ args }}

update:
    nix flake update \
      --commit-lock-file \
      --commit-lockfile-summary "flake: update all inputs"

update-input input:
    nix flake lock \
      --update-input {{ input }} \
      --commit-lock-file \
      --commit-lockfile-summary "flake: update {{ input }}"

deploy system *args="":
    nix run \
      --inputs-from . \
      'nixpkgs#deploy-rs' -- \
      '.#{{ system }}' \
      {{ args }}

deploy-all *args="":
    nix run \
      --inputs-from . \
      'nixpkgs#deploy-rs' -- \
      {{ args }}

clean:
    rm -rf \
      result* \
      repl-result-out* \
      config.tf.json \
      .terraform*