aboutsummaryrefslogtreecommitdiff
path: root/hosts/ganymede/nixos.nix
diff options
context:
space:
mode:
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";
}