summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/surtr/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/hosts/surtr/default.nix b/hosts/surtr/default.nix
index 85723005..34304b44 100644
--- a/hosts/surtr/default.nix
+++ b/hosts/surtr/default.nix
@@ -1,4 +1,4 @@
1{ flake, pkgs, ... }: 1{ flake, pkgs, lib, ... }:
2{ 2{
3 imports = with flake.nixosModules.systemProfiles; [ 3 imports = with flake.nixosModules.systemProfiles; [
4 qemu-guest openssh rebuild-machines ./zfs.nix ./dns 4 qemu-guest openssh rebuild-machines ./zfs.nix ./dns
@@ -74,6 +74,11 @@
74 }; 74 };
75 }; 75 };
76 76
77 systemd.network.networks."40-ens3".networkConfig = {
78 Domains = lib.mkForce "~.";
79 DNS = [ "46.38.225.230" "46.38.252.230" "2a03:4000:0:1::e1e6" "2a03:4000:8000::fce6" ];
80 };
81
77 services.openssh = { 82 services.openssh = {
78 enable = true; 83 enable = true;
79 passwordAuthentication = false; 84 passwordAuthentication = false;