mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
remove old upgrade configs
This commit is contained in:
parent
6a9858992d
commit
aa42c4a2f9
3 changed files with 0 additions and 19 deletions
|
@ -45,18 +45,6 @@
|
|||
];
|
||||
};
|
||||
|
||||
security.sudo.extraRules = [{
|
||||
groups = [ "wheel" ];
|
||||
commands = [
|
||||
{ options = [ "NOPASSWD" ]; command = "/run/current-system/sw/bin/nix-collect-garbage -d"; }
|
||||
{ options = [ "NOPASSWD" ]; command = "/run/current-system/sw/bin/nix-channel --update"; }
|
||||
{ options = [ "NOPASSWD" ]; command = "/run/current-system/sw/bin/nixos-rebuild switch"; }
|
||||
{ options = [ "NOPASSWD" ]; command = "/run/current-system/sw/bin/nixos-rebuild switch --upgrade"; }
|
||||
{ options = [ "NOPASSWD" ]; command = "/run/current-system/sw/bin/nixos-rebuild boot"; }
|
||||
{ options = [ "NOPASSWD" ]; command = "/run/current-system/sw/bin/nixos-rebuild boot --upgrade"; }
|
||||
];
|
||||
}];
|
||||
|
||||
users.users.sean = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" "audio" "video" "networkmanager" "dialout" "input" "wireshark" ];
|
||||
|
|
|
@ -20,9 +20,6 @@ in
|
|||
experimental-features = nix-command flakes
|
||||
'';
|
||||
|
||||
system.autoUpgrade.flake = cfg.rebuildPath;
|
||||
system.autoUpgrade.flags = [ upgradeArg ];
|
||||
|
||||
environment.systemPackages = map
|
||||
(x: (pkgs.writeShellScriptBin
|
||||
"sc-${builtins.head x}"
|
||||
|
|
|
@ -12,10 +12,6 @@ in
|
|||
|
||||
(mkIf (cfg == "server") {
|
||||
services.openssh.enable = true;
|
||||
system.autoUpgrade = {
|
||||
enable = true;
|
||||
allowReboot = true;
|
||||
};
|
||||
nix.gc = {
|
||||
automatic = true;
|
||||
options = "--delete-older-than 30d";
|
||||
|
|
Loading…
Reference in a new issue