nixos updates/fixes

This commit is contained in:
John Bowdre 2024-12-27 10:50:18 -06:00
parent 1a8a7c0366
commit 9d3cfebd73
Signed by: john
SSH key fingerprint: SHA256:cZYnOxaLdo+MhBNMX38ihO/p2Kek6fBykSFoJwHBhUo
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@
settings = {
trusted-users = [ "root" "@wheel" ];
auto-optimise-store = lib.mkDefault true;
experimental-features = [ "nix-command" "flakes" "repl-flake" ];
experimental-features = [ "nix-command" "flakes" ];
warn-dirty = false;
system-features = [ "kvm" "big-parallel" "nixos-test" ];
flake-registry = "";

View file

@ -20,6 +20,6 @@ in {
};
home-manager.users.john =
import ../../../../home/${config.networking.hostName}.nix;
import ../../../../home/hosts/${config.networking.hostName}.nix;
}