Fix deprecations

This commit is contained in:
Jakob Lechner 2023-07-13 22:56:35 +00:00
parent 3cefc7f9dd
commit 27460d3682
No known key found for this signature in database
GPG key ID: 996082EFB5906C10
5 changed files with 38 additions and 40 deletions

View file

@ -1,3 +1,3 @@
{
boot.cleanTmpDir = true;
boot.tmp.cleanOnBoot = true;
}

View file

@ -34,11 +34,13 @@ in
"nixpkgs-overlays=${overlaysCompat}"
];
# sudoers are trusted nix users
trustedUsers = [ "@wheel" ];
settings = {
# sudoers are trusted nix users
trusted-users = [ "@wheel" ];
# On-the-fly optimisation of nix store
autoOptimiseStore = true;
# On-the-fly optimisation of nix store
auto-optimise-store = true;
};
# less noticeable nix builds
daemonCPUSchedPolicy = "idle";
@ -47,7 +49,7 @@ in
};
nixpkgs.overlays = with inputs; [
self.overlay
self.overlays.default
(final: prev: {
unstable = import nixpkgs-unstable {