mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-28 04:11:49 +01:00
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{
|
|
# NOTE: the args not used in this file CAN NOT be removed!
|
|
# because haumea pass argument lazily,
|
|
# and these arguments are used in the functions like `mylib.nixosSystem`, `mylib.colmenaSystem`, etc.
|
|
inputs,
|
|
lib,
|
|
mylib,
|
|
myvars,
|
|
system,
|
|
genSpecialArgs,
|
|
...
|
|
} @ args: let
|
|
# 星野 瑠美衣, Hoshino Rubii
|
|
name = "ruby";
|
|
tags = [name "homelab-operation"];
|
|
ssh-user = "root";
|
|
|
|
modules = {
|
|
nixos-modules =
|
|
(map mylib.relativeToRoot [
|
|
# common
|
|
"secrets/nixos.nix"
|
|
"modules/nixos/server/server.nix"
|
|
"modules/nixos/server/kubevirt-hardware-configuration.nix"
|
|
# host specific
|
|
"hosts/idols-${name}"
|
|
])
|
|
++ [
|
|
];
|
|
home-modules = map mylib.relativeToRoot [
|
|
"home/linux/tui.nix"
|
|
];
|
|
};
|
|
|
|
systemArgs = modules // args;
|
|
in {
|
|
nixosConfigurations.${name} = mylib.nixosSystem systemArgs;
|
|
|
|
colmena.${name} =
|
|
mylib.colmenaSystem (systemArgs // {inherit tags ssh-user;});
|
|
|
|
packages.${name} = inputs.self.nixosConfigurations.${name}.config.formats.kubevirt;
|
|
|
|
# nixos tests
|
|
packages."${name}-nixos-tests" = import ../nixos-tests/idols-ruby.nix systemArgs;
|
|
}
|