phone: Mimic system nix settings for now

Should eventually replace this with the system module.
This commit is contained in:
Donovan Glover 2024-06-17 11:27:00 -04:00
parent fb5c7849d0
commit c83f567708
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -250,9 +250,21 @@ in
};
};
nix = {
settings = {
experimental-features = [ "nix-command" "flakes" "repl-flake" ];
auto-optimise-store = true;
warn-dirty = false;
trusted-users = [
"root"
"@wheel"
];
};
};
powerManagement.enable = true;
zramSwap.enable = true;
nix.settings.experimental-features = [ "nix-command" "flakes" "repl-flake" ];
system = {
inherit stateVersion;