cloned configuratons/base/default.nix to configurations/link-warden-tofu/default.nix
All checks were successful
/ check (push) Successful in 1m2s
/ deploy (push) Has been skipped

This commit is contained in:
specCon18 2025-06-22 06:02:24 -04:00
parent 8e3fb7852a
commit 8bc2bd0762

View file

@ -0,0 +1,27 @@
{
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";
}