mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
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
32 lines
492 B
Nix
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
|
|
];
|
|
}
|