infrastructure/systems/extern-test/nixos.nix
2024-03-25 19:43:01 -07:00

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";
};
}