From 69bccfd2e6a66cbd82860b79960bf7112e9a3d2e Mon Sep 17 00:00:00 2001 From: specCon18 Date: Sun, 22 Jun 2025 23:47:02 -0400 Subject: [PATCH] fixed ssh issue for fedora --- .../nixos/medchart-tofu/default.nix | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 configurations/nixos/medchart-tofu/default.nix 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"; +}