Specify system autoUpgrade rules per-system

This commit is contained in:
Evie Litherland-Smith 2023-05-04 07:01:03 +01:00
parent 83cf5f4bf6
commit 5dffba75f4
4 changed files with 11 additions and 6 deletions

View file

@ -7,7 +7,6 @@ in
(import "${home-manager}/nixos") (import "${home-manager}/nixos")
./common.nix ./common.nix
./hardware/audio.nix ./hardware/audio.nix
./hardware/bluetooth.nix
./locales/en_GB.nix ./locales/en_GB.nix
./desktop/hyprland.nix ./desktop/hyprland.nix
]; ];
@ -29,4 +28,9 @@ in
home.homeDirectory = "/home/elitherl"; home.homeDirectory = "/home/elitherl";
home.stateVersion = "22.11"; home.stateVersion = "22.11";
}; };
system.autoUpgrade = {
enable = false;
allowReboot = false;
};
} }

View file

@ -43,4 +43,9 @@ in
enable = true; enable = true;
users = [ "xenia" ]; users = [ "xenia" ];
}; };
system.autoUpgrade = {
enable = true;
allowReboot = false;
};
} }

View file

@ -45,9 +45,4 @@
dates = "weekly"; dates = "weekly";
options = "--delete-older-than 7d"; options = "--delete-older-than 7d";
}; };
system.autoUpgrade = {
enable = false;
allowReboot = false;
};
} }

View file

@ -1,4 +1,5 @@
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more # See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
windowrule = tile, ^(neovide)$
windowrule = float, ^(thunar)$ windowrule = float, ^(thunar)$
windowrule = float, ^(pavucontrol)$ windowrule = float, ^(pavucontrol)$
windowrule = float, ^(Signal)$ windowrule = float, ^(Signal)$