mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
28 lines
463 B
Nix
28 lines
463 B
Nix
{
|
|
extern'test'inputs,
|
|
...
|
|
}: let
|
|
inherit (extern'test'inputs.self) nixosModules;
|
|
in {
|
|
imports = [
|
|
nixosModules.default
|
|
];
|
|
|
|
config = {
|
|
gensokyo-zone = {
|
|
nix = {
|
|
enable = true;
|
|
builder.enable = true;
|
|
};
|
|
kyuuto = {
|
|
enable = true;
|
|
shared.enable = true;
|
|
};
|
|
# TODO: users?
|
|
};
|
|
|
|
# this isn't a real machine...
|
|
boot.isContainer = true;
|
|
system.stateVersion = "23.11";
|
|
};
|
|
}
|