migrated to correct config name

This commit is contained in:
Jermeiah S 2025-06-23 01:07:46 -04:00
parent 69bccfd2e6
commit 50a0cd0d1e
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

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