diff options
Diffstat (limited to 'os')
| -rw-r--r-- | os/common/configuration.nix | 8 | ||||
| -rw-r--r-- | os/pc/configuration.nix | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/os/common/configuration.nix b/os/common/configuration.nix index d1ea0e5..9e9b035 100644 --- a/os/common/configuration.nix +++ b/os/common/configuration.nix @@ -20,7 +20,7 @@ in ../../global/common ]; - system.stateVersion = "24.05"; + system.stateVersion = "26.05"; time.timeZone = "Asia/Kolkata"; networking = { @@ -77,8 +77,10 @@ in services = { resolved = { enable = true; - dnssec = "allow-downgrade"; - dnsovertls = "opportunistic"; + settings.Resolve = { + DNSOverTLS = "opportunistic"; + DNSSEC = "allow-downgrade"; + }; }; openssh = { enable = true; diff --git a/os/pc/configuration.nix b/os/pc/configuration.nix index 3d351e8..2b053d1 100644 --- a/os/pc/configuration.nix +++ b/os/pc/configuration.nix @@ -32,6 +32,6 @@ in }; documentation.dev.enable = true; - programs.adb.enable = true; + environment.systemPackages = [ pkgs.android-tools ]; users.users.${user}.extraGroups = [ "adbusers" ]; } |
