Nixos-Configuration/configurations/nixos/base-tofu/default.nix
2025-06-23 01:09:25 -04:00

27 lines
415 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;
};
networking = {
hostName = "base-tofu";
};
environment.systemPackages = [
];
system.stateVersion = "25.05";
}