Configure for two machines

This commit is contained in:
2026-03-09 23:04:47 +00:00
parent cb2150362c
commit 95740b26bf
6 changed files with 55 additions and 35 deletions

View File

@@ -54,12 +54,11 @@
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
pkgs-unstable = nixpkgs-unstable.legacyPackages.${system}; pkgs-unstable = nixpkgs-unstable.legacyPackages.${system};
in {
nixosConfigurations = { mkHost = hostname: nixpkgs.lib.nixosSystem {
stationette = nixpkgs.lib.nixosSystem {
modules = [ modules = [
./hardware-configuration.nix ./hosts/${hostname}/hardware-configuration.nix
./hardware ./hosts/${hostname}/disko.nix
./system ./system
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
{ {
@@ -74,6 +73,7 @@
inherit voxtype; inherit voxtype;
inherit walker; inherit walker;
inherit impermanence; inherit impermanence;
inherit hostname;
}; };
}; };
} }
@@ -83,8 +83,13 @@
inherit pkgs-unstable; inherit pkgs-unstable;
inherit impermanence; inherit impermanence;
inherit disko; inherit disko;
inherit hostname;
}; };
}; };
in {
nixosConfigurations = {
stationette = mkHost "stationette";
station = mkHost "station";
}; };
# Standalone home-manager configuration entrypoint # Standalone home-manager configuration entrypoint

View File

@@ -0,0 +1,15 @@
{ config, lib, pkgs, modulesPath, ... }:
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
fileSystems."/persist" = {
device = "/dev/disk/by-partlabel/disk-station-root";
neededForBoot = true;
fsType = "btrfs";
options = [ "subvol=persist" ];
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }: { pkgs, hostname, ... }:
{ {
boot = { boot = {
@@ -48,7 +48,7 @@
"splash" "splash"
]; ];
bootspec.enable = true; bootspec.enable = true;
resumeDevice = "/dev/disk/by-partlabel/disk-stationette-root"; resumeDevice = "/dev/disk/by-partlabel/disk-${hostname}-root";
}; };
systemd = { systemd = {

View File

@@ -1,8 +1,8 @@
{ ... }: { hostname, ... }:
{ {
networking = { networking = {
hostName = "stationette"; hostName = hostname;
networkmanager.enable = true; networkmanager.enable = true;
wireless = { wireless = {
iwd.enable = true; iwd.enable = true;

View File

@@ -1,4 +1,4 @@
{ pkgs, pkgs-unstable, ... }: { pkgs, pkgs-unstable, hostname, ... }:
{ {
@@ -18,7 +18,7 @@
withUWSM = true; withUWSM = true;
}; };
steam = { steam = {
enable = true; enable = hostname == "station";
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers