1
Fork 0

Update justfile to use nixos-rebuild-ng by default

This commit is contained in:
prescientmoon 2025-06-11 23:59:12 +02:00
parent f2a0da8827
commit 879183b13b
Signed by: prescientmoon
SSH key fingerprint: SHA256:WFp/cO76nbarETAoQcQXuV+0h7XJsEsOCI0UsyPIy6U
5 changed files with 29 additions and 20 deletions
devshells

View file

@ -1,10 +1,11 @@
{ pkgs, ... }:
{ pkgs, upkgs, ... }:
pkgs.mkShell {
packages = with pkgs; [
just
python3
sops
ssh-to-age
age
packages = [
pkgs.just # script runner
pkgs.python3 # used throughout a bunch of just recipes
pkgs.sops # just sops-rekey
pkgs.ssh-to-age # just ssh-to-age
pkgs.age # just age-public-key
upkgs.nixos-rebuild-ng
];
}