aboutsummaryrefslogtreecommitdiff
path: root/hosts/ganymede
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-01-11 08:03:58 -0600
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-01-11 08:03:58 -0600
commit32a7e59b93a9c3748cd6aeca3d4fc9dadf8e0f59 (patch)
tree2347b64072047b385c0637235f5fffb6ce160b1e /hosts/ganymede
parentc7e9ff3c853755cd3b0e8bc7443d55d222a06f80 (diff)
move various configs into modules where they belong
Diffstat (limited to 'hosts/ganymede')
-rw-r--r--hosts/ganymede/nixos.nix23
1 files changed, 2 insertions, 21 deletions
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;
}