Clear old disk UUIDs, boot config, and filesystem mounts. Add backup script for migrating service state to new hardware. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
304 B
Nix
11 lines
304 B
Nix
#./hosts/hardware/FredOS-Mediaserver.nix
|
|
# TODO: Replace with hardware-configuration.nix from new server
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
|
{
|
|
imports = [
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
];
|
|
|
|
networking.hostName = "FredOS-Mediaserver";
|
|
system.stateVersion = "25.11";
|
|
}
|