Specify system autoUpgrade rules per-system
This commit is contained in:
parent
83cf5f4bf6
commit
5dffba75f4
|
@ -7,7 +7,6 @@ in
|
|||
(import "${home-manager}/nixos")
|
||||
./common.nix
|
||||
./hardware/audio.nix
|
||||
./hardware/bluetooth.nix
|
||||
./locales/en_GB.nix
|
||||
./desktop/hyprland.nix
|
||||
];
|
||||
|
@ -29,4 +28,9 @@ in
|
|||
home.homeDirectory = "/home/elitherl";
|
||||
home.stateVersion = "22.11";
|
||||
};
|
||||
|
||||
system.autoUpgrade = {
|
||||
enable = false;
|
||||
allowReboot = false;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -43,4 +43,9 @@ in
|
|||
enable = true;
|
||||
users = [ "xenia" ];
|
||||
};
|
||||
|
||||
system.autoUpgrade = {
|
||||
enable = true;
|
||||
allowReboot = false;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -45,9 +45,4 @@
|
|||
dates = "weekly";
|
||||
options = "--delete-older-than 7d";
|
||||
};
|
||||
|
||||
system.autoUpgrade = {
|
||||
enable = false;
|
||||
allowReboot = false;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
|
||||
windowrule = tile, ^(neovide)$
|
||||
windowrule = float, ^(thunar)$
|
||||
windowrule = float, ^(pavucontrol)$
|
||||
windowrule = float, ^(Signal)$
|
||||
|
|
Loading…
Reference in a new issue