diff --git a/Justfile b/Justfile index 7baa3d7..3b50b49 100644 --- a/Justfile +++ b/Justfile @@ -5,6 +5,8 @@ boot: nixos-rebuild boot --flake . --use-remote-sudo switch: + git add . + git commit -a -m "update" nixos-rebuild switch --flake . --use-remote-sudo debug: diff --git a/flake.nix b/flake.nix index 1194787..0252660 100644 --- a/flake.nix +++ b/flake.nix @@ -29,7 +29,7 @@ boot.loader.efi.canTouchEfiVariables = true; nix.settings.experimental-features = [ "nix-command" "flakes" ]; environment.systemPackages = with pkgs; [ - cargo rustc just git vim wget obs-studio gcc gnumake autoconf automake pkg-config + cargo rustc just git vim wget obs-studio gcc gnumake autoconf automake pkg-config rpi-imager ]; environment.variables.EDITOR = "vim"; security.sudo.wheelNeedsPassword = false;