Compare commits
3 commits
271e783a6d
...
05063d120f
Author | SHA1 | Date | |
---|---|---|---|
05063d120f | |||
0f0b917939 | |||
e4857f1995 |
4 changed files with 10 additions and 5 deletions
|
@ -109,11 +109,11 @@
|
|||
},
|
||||
"nixpkgs_2": {
|
||||
"locked": {
|
||||
"lastModified": 1714531828,
|
||||
"narHash": "sha256-ILsf3bdY/hNNI/Hu5bSt2/KbmHaAVhBbNUOdGztTHEg=",
|
||||
"lastModified": 1714685007,
|
||||
"narHash": "sha256-Q4ddhb5eC5pwci0QhAapFwnsc8X8H9ZMQiWpsofBsDc=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "0638fe2715d998fa81d173aad264eb671ce2ebc1",
|
||||
"rev": "383ffe076d9b633a2e97b6e4dd97fc15fcf30159",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
system.autoUpgrade = {
|
||||
enable = true;
|
||||
flake = "git+https://git.icanttype.org/cdombroski/nix-configs.git";
|
||||
allowReboot = true;
|
||||
allowReboot = lib.mkDefault true;
|
||||
rebootWindow = { lower = "02:00"; upper = "06:00"; };
|
||||
};
|
||||
}
|
||||
|
|
|
@ -86,7 +86,10 @@
|
|||
};
|
||||
hardware.openrgb.enable = true;
|
||||
resolved.enable = true;
|
||||
btrfs.autoScrub.enable = true;
|
||||
btrfs.autoScrub = {
|
||||
enable = true;
|
||||
fileSystems = [ "/" "/home" ];
|
||||
};
|
||||
};
|
||||
hardware = {
|
||||
sane = {
|
||||
|
@ -161,6 +164,7 @@
|
|||
"/home".options = [ "compress=lzo" "autodefrag" "discard=async" "defaults" ];
|
||||
};
|
||||
|
||||
system.autoUpgrade.allowReboot = false;
|
||||
system.stateVersion = "23.11"; # Did you read the comment?
|
||||
}
|
||||
|
||||
|
|
|
@ -261,6 +261,7 @@
|
|||
services.zfs.zed.enableMail = false;
|
||||
|
||||
system.stateVersion = "23.11"; # Did you read the comment?
|
||||
system.autoUpgrade.allowReboot = false;
|
||||
zramSwap.enable = true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue