feat(reimu): new container

This commit is contained in:
arcnmx 2024-01-27 20:16:54 -08:00
parent 196dc999db
commit 1cb5fd9285
7 changed files with 168 additions and 3 deletions

View file

@ -0,0 +1,7 @@
_: {
arch = "x86_64";
type = "NixOS";
modules = [
./nixos.nix
];
}

22
systems/reimu/nixos.nix Normal file
View file

@ -0,0 +1,22 @@
{
meta,
...
}: {
imports = let
inherit (meta) nixos;
in [
nixos.base
nixos.reisen-ct
];
systemd.network.networks.eth0 = {
name = "eth0";
matchConfig = {
MACAddress = "BC:24:11:C4:66:A8";
Type = "ether";
};
DHCP = "no";
};
system.stateVersion = "23.11";
}