diff options
author | Alex Auvolat <alex@adnab.me> | 2024-02-06 17:55:39 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2024-02-06 17:55:39 +0100 |
commit | 68153b894f7f227d4e7714c6d138454df521d31c (patch) | |
tree | b97371fdcadbc478da471ab1b10621017b20fd83 /nixos/kusanagi.nix | |
parent | 751261487ea1b628b7d683be4a0b23ac234be86a (diff) | |
download | user-config-68153b894f7f227d4e7714c6d138454df521d31c.tar.gz user-config-68153b894f7f227d4e7714c6d138454df521d31c.zip |
remove unbound dns resolver on local pcs
Diffstat (limited to 'nixos/kusanagi.nix')
-rw-r--r-- | nixos/kusanagi.nix | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/nixos/kusanagi.nix b/nixos/kusanagi.nix index d2cd13c..4bd5b77 100644 --- a/nixos/kusanagi.nix +++ b/nixos/kusanagi.nix @@ -97,7 +97,7 @@ in # ---- immutable user config for tmpfs root ---- users.mutableUsers = false; - users.users.lx.passwordFile = "/Z/lx/.password"; + users.users.lx.hashedPasswordFile = "/Z/lx/.password"; users.users.lx.uid = 1000; users.users.lx.extraGroups = [ "vboxusers" "docker" ]; @@ -115,10 +115,6 @@ in nix.gc.automatic = false; - # ---- disable unbound dns resolution ---- - - services.unbound.resolveLocalQueries = false; - # ---- improve graphics ---- services.xserver.videoDrivers = [ "intel" ]; |