chore(deps): update renovate/renovate docker tag to v37.68.4 #218

Open
renovate wants to merge 1976 commits from renovate/renovate-renovate-37.x into main
3 changed files with 6 additions and 2 deletions
Showing only changes of commit ff00a181c9 - Show all commits

View file

@ -112,13 +112,13 @@
iso = nixos-generators.nixosGenerate { iso = nixos-generators.nixosGenerate {
inherit system pkgs; inherit system pkgs;
format = "iso"; format = "install-iso";
modules = [ (import ./nixos/templates/iso.nix) ]; modules = [ (import ./nixos/templates/iso.nix) ];
}; };
iso-graphical = nixos-generators.nixosGenerate { iso-graphical = nixos-generators.nixosGenerate {
inherit system pkgs; inherit system pkgs;
format = "iso"; format = "install-iso";
modules = [ (import ./nixos/templates/iso-graphical.nix) ]; modules = [ (import ./nixos/templates/iso-graphical.nix) ];
}; };

View file

@ -53,5 +53,6 @@
ripgrep ripgrep
rsync rsync
zoxide zoxide
tmux
]; ];
} }

View file

@ -23,4 +23,7 @@
boot.loader.grub.enable = true; boot.loader.grub.enable = true;
boot.loader.grub.version = 2; boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/sda"; boot.loader.grub.device = "/dev/sda";
# Make laura admin
users.extraUsers.laura.extraGroups = [ "wheel" ];
} }