2026-03-28 15:28:37 +00:00
|
|
|
#./hosts/hardware/FredOS-Mediaserver.nix
|
2026-04-14 15:33:07 +01:00
|
|
|
# TODO: Replace with hardware-configuration.nix from new server
|
2026-03-28 15:28:37 +00:00
|
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
networking.hostName = "FredOS-Mediaserver";
|
|
|
|
|
system.stateVersion = "25.11";
|
2026-04-01 21:14:16 +01:00
|
|
|
}
|