Files
nixos/Justfile

33 lines
673 B
Makefile
Raw Permalink Normal View History

2026-03-01 08:43:43 +01:00
default: switch build-laptop upload clean
2026-03-01 08:19:46 +01:00
vm-desktop:
nix build .#nixosConfigurations.epiquev2.config.system.build.vm
./result/bin/run-epiquev2-vm
vm-laptop:
nix build .#nixosConfigurations.dalaptop.config.system.build.vm
./result/bin/run-dalaptop-vm
2026-03-01 08:43:43 +01:00
build-laptop:
nix build .#nixosConfigurations.dalaptop.config.system.build.toplevel --log-format internal-json |& nom --json
2026-03-01 08:36:23 +01:00
upload:
attic push my-config result -j2
attic push my-config /run/current-system -j2
2026-03-01 08:36:23 +01:00
2026-03-01 08:19:46 +01:00
clean:
rm -rf result
rm -rf *.qcow2
2026-03-02 12:58:21 +01:00
format:
treefmt .
2026-03-01 08:19:46 +01:00
switch:
nh os switch --refresh
2026-03-01 08:19:46 +01:00
2026-03-09 15:01:37 +01:00
switch_update:
nh os switch --refresh --update
2026-03-01 08:19:46 +01:00
help:
2026-03-09 15:01:37 +01:00
@just --list