From d6eef4c0014157495d7e40b7ecd1e584c1ba5cb0 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 19 Feb 2026 12:07:22 -0800 Subject: [PATCH] Adjust NixOS config and tailscale setup --- nixos/machines/ryzen-shine.nix | 2 +- nixos/secrets/htpassword | 1 + nixos/tailscale.nix | 8 ++++---- 3 files changed, 6 insertions(+), 5 deletions(-) create mode 100644 nixos/secrets/htpassword diff --git a/nixos/machines/ryzen-shine.nix b/nixos/machines/ryzen-shine.nix index 1d80505f..2a5535cd 100644 --- a/nixos/machines/ryzen-shine.nix +++ b/nixos/machines/ryzen-shine.nix @@ -23,7 +23,7 @@ # extraFlags = ["--node-taint preferNoSchedule=true:NoSchedule"]; }; myModules.nixified-ai.enable = true; - boot.kernelPackages = pkgs.linuxPackages_latest; + # boot.kernelPackages = pkgs.linuxPackages_latest; boot.loader.systemd-boot.configurationLimit = 5; diff --git a/nixos/secrets/htpassword b/nixos/secrets/htpassword new file mode 100644 index 00000000..c515456c --- /dev/null +++ b/nixos/secrets/htpassword @@ -0,0 +1 @@ +colonelpanic:$apr1$UNhF1naX$BaWw4XVcz7G5QVm9XSjTI0 diff --git a/nixos/tailscale.nix b/nixos/tailscale.nix index 37ae62be..47cbbd5e 100644 --- a/nixos/tailscale.nix +++ b/nixos/tailscale.nix @@ -57,10 +57,10 @@ makeEnable config "myModules.tailscale" true { fi # First-time (or post-logout) login. - ${pkgs.tailscale}/bin/tailscale up \\ - --auth-key "file:$key_file" \\ - --accept-dns=true \\ - --operator=imalison \\ + ${pkgs.tailscale}/bin/tailscale up \ + --auth-key "file:$key_file" \ + --accept-dns=true \ + --operator=imalison \ --timeout=60s ''; };