From 32a7e59b93a9c3748cd6aeca3d4fc9dadf8e0f59 Mon Sep 17 00:00:00 2001 From: Collin Williams <96917990+bluedragon1221@users.noreply.github.com> Date: Sun, 11 Jan 2026 08:03:58 -0600 Subject: move various configs into modules where they belong --- hosts/ganymede/nixos.nix | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) (limited to 'hosts/ganymede') diff --git a/hosts/ganymede/nixos.nix b/hosts/ganymede/nixos.nix index ce30973..9dc6dec 100644 --- a/hosts/ganymede/nixos.nix +++ b/hosts/ganymede/nixos.nix @@ -1,6 +1,5 @@ { config, - lib, inputs, ... }: { @@ -23,24 +22,6 @@ networkConfig.DHCP = "yes"; }; - services.openssh.settings.PasswordAuthentication = lib.mkForce true; - - # services.tsnsrv = { - # enable = true; - # defaults = { - # authKeyPath = config.collinux.secrets."tsnsrv-authkey".path; - # ephemeral = true; - # loginServerUrl = "https://williamsfam.us.com"; - # }; - - # services = { - # "adguard" = { - # listenAddr = ":80"; - # toURL = "http://localhost:8001"; - # }; - # }; - # }; - - nixpkgs.hostPlatform = "x86_64-linux"; - system.stateVersion = "25.05"; + # i broke something and this fixes it + environment.etc."systemd/resolved.conf.d/10-dns.conf".text = config.environment.etc."systemd/resolved.conf".text; } -- cgit v1.3.1