feat: Convert to a multi-host flake
This commit is contained in:
parent
c20fd46f9f
commit
b717ea973a
14 changed files with 416 additions and 27 deletions
20
hosts/anvil/hardware-configuration.nix
Normal file
20
hosts/anvil/hardware-configuration.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# TODO: Replace with actual hardware-configuration.nix from anvil machine
|
||||
# Run on anvil: nixos-generate-config --show-hardware-config
|
||||
{ config, lib, pkgs, modulesPath, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
# Placeholder filesystem - replace with actual values from anvil
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-uuid/PLACEHOLDER";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" = {
|
||||
device = "/dev/disk/by-uuid/PLACEHOLDER";
|
||||
fsType = "vfat";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue