nixfiles/systems/mai.nix
Kat Inskip 8aec107872
Some checks failed
flake-update / flake-update check (push) Has been cancelled
flake-update / flake-update (push) Has been cancelled
nodes / nodes check (push) Successful in 1m51s
nodes / nodes-home-home-base (push) Failing after 3m58s
nodes / nodes-home-home-graphical (push) Failing after 10m33s
nodes / nodes-home-home-neovim (push) Failing after 3m56s
nodes / nodes-home-home-shell (push) Failing after 3m55s
nodes / nodes-nixos-mai (push) Failing after 3m45s
nodes / nodes-nixos-mei (push) Failing after 3m58s
feat: awrawRAWARAWRWAR
2025-10-13 11:47:37 -07:00

32 lines
492 B
Nix

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