30 lines
457 B
Nix
30 lines
457 B
Nix
{
|
|
flake,
|
|
modulesPath,
|
|
config,
|
|
...
|
|
}:
|
|
|
|
let
|
|
inherit (flake) inputs;
|
|
inherit (inputs) self;
|
|
in
|
|
{
|
|
imports = [
|
|
self.nixosModules.default
|
|
"${modulesPath}/virtualisation/lxc-container.nix"
|
|
];
|
|
services.yggdrasil.persistentKeys = false;
|
|
deploy = {
|
|
enable = false;
|
|
};
|
|
services = {
|
|
tty-ips.enable = true;
|
|
};
|
|
networking = {
|
|
hostName = "base";
|
|
};
|
|
environment.systemPackages = [
|
|
];
|
|
system.stateVersion = "25.05";
|
|
}
|