nixfiles/systems/mei.nix
2025-07-13 07:09:45 -07:00

26 lines
397 B
Nix

_: let
hostConfig = {
tree,
modulesPath,
...
}: {
imports =
[
(modulesPath + "/profiles/qemu-guest.nix")
]
++ (with tree.nixos.profiles; [
server
])
++ (with tree.nixos.hardware; [
oracle_micro
]);
system.stateVersion = "23.11";
};
in {
arch = "x86_64";
type = "NixOS";
modules = [
hostConfig
];
}