Nixos-Configuration/configurations/nixos/medchart-tofu/default.nix
specCon18 69bccfd2e6
All checks were successful
/ check (push) Successful in 1m2s
/ deploy (push) Has been skipped
fixed ssh issue for fedora
2025-06-22 23:47:02 -04:00

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