diff --git a/configurations/nixos/medchart-tofu/default.nix b/configurations/nixos/medchart-tofu/default.nix new file mode 100644 index 0000000..45d7e03 --- /dev/null +++ b/configurations/nixos/medchart-tofu/default.nix @@ -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 = "medchart"; + }; + environment.systemPackages = [ + ]; + system.stateVersion = "25.05"; +}