autoUpgrade off

This commit is contained in:
notohh 2022-12-18 20:07:10 -05:00
parent b4699c9597
commit 933235010d

View file

@ -7,7 +7,7 @@
./modules/hyprland/default.nix ./modules/hyprland/default.nix
]; ];
# Bootloader. # bootloader
boot.loader = { boot.loader = {
systemd-boot = { systemd-boot = {
enable = true; enable = true;
@ -87,14 +87,12 @@
wireplumber.enable = true; wireplumber.enable = true;
}; };
# enable steam
programs.steam = { programs.steam = {
enable = true; enable = true;
}; };
users.defaultUserShell = pkgs.nushell; users.defaultUserShell = pkgs.nushell;
#polkit
security.polkit.enable = true; security.polkit.enable = true;
security.pam.services.swaylock = { security.pam.services.swaylock = {
text = '' text = ''
@ -102,7 +100,6 @@
''; '';
}; };
#users
users.users.notoh = { users.users.notoh = {
isNormalUser = true; isNormalUser = true;
description = "notoh"; description = "notoh";
@ -166,8 +163,8 @@
wget wget
git git
gh gh
alacritty
stow stow
wezterm
starship starship
nushell nushell
rustup rustup
@ -239,7 +236,7 @@
}; };
system.autoUpgrade = { system.autoUpgrade = {
enable = true; enable = false;
channel = "https://nixos.org/channel/nixos-unstable"; channel = "https://nixos.org/channel/nixos-unstable";
}; };