aboutsummaryrefslogtreecommitdiff
path: root/hosts/ganymede/nixos.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-01-09 20:36:36 -0600
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-01-09 20:36:36 -0600
commit547d6dc4731b04a240048b0b95c0ea12e0d1f6bd (patch)
treedd3d63dfb21c62d2d71a1f8e937d3247c2e78b11 /hosts/ganymede/nixos.nix
parent7b9a5eb561948521ac4669074cc746a0f848ed23 (diff)
lots of changes, including revamp of network services boot chain on mercury
Diffstat (limited to 'hosts/ganymede/nixos.nix')
-rw-r--r--hosts/ganymede/nixos.nix28
1 files changed, 27 insertions, 1 deletions
diff --git a/hosts/ganymede/nixos.nix b/hosts/ganymede/nixos.nix
index 863032f..ce30973 100644
--- a/hosts/ganymede/nixos.nix
+++ b/hosts/ganymede/nixos.nix
@@ -1,8 +1,16 @@
-{inputs, ...}: {
+{
+ config,
+ lib,
+ inputs,
+ ...
+}: {
imports = [
inputs.disko.nixosModules.disko
+ inputs.tsnsrv.nixosModules.default
./disks.nix
+ ./minecraft.nix
+
./iwlwifi.nix
./caddy.nix
];
@@ -15,6 +23,24 @@
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";
}