Nixos-Configuration/configurations/nixos/link-warden-tofu/default.nix
specCon18 8bc2bd0762
All checks were successful
/ check (push) Successful in 1m2s
/ deploy (push) Has been skipped
cloned configuratons/base/default.nix to configurations/link-warden-tofu/default.nix
2025-06-22 06:02:24 -04:00

27 lines
410 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";
};
environment.systemPackages = [
];
system.stateVersion = "25.05";
}