mirror of https://git.jolheiser.com/dotnix.git
38 lines
798 B
Plaintext
38 lines
798 B
Plaintext
[private]
|
|
default:
|
|
@just --choose
|
|
|
|
[private]
|
|
rebuild *args:
|
|
@git add .
|
|
@sudo nixos-rebuild --flake . {{args}} |& nix run nixpkgs#nix-output-monitor
|
|
|
|
# Rebuild the current machine
|
|
switch *args:
|
|
@just rebuild switch {{args}}
|
|
|
|
hm:
|
|
@home-manager switch --flake . |& nix run nixpkgs#nix-output-monitor
|
|
@systemctl --user start agenix.service
|
|
|
|
# Rebuild the current machine for next boot
|
|
boot *args:
|
|
@just rebuild boot {{args}}
|
|
|
|
# Run colmena for remote deploy
|
|
colmena node:
|
|
@git add .
|
|
@nix run nixpkgs#colmena -- apply --on {{node}}
|
|
|
|
# Update the flake
|
|
update-flake:
|
|
@nix flake update
|
|
|
|
# Update an individual input
|
|
update input:
|
|
@nix flake lock --update-input {{input}}
|
|
|
|
fetch:
|
|
@nix run nixpkgs#onefetch -- --true-color never --no-bots -d lines-of-code
|
|
@nix run nixpkgs#scc -- --no-cocomo .
|