moved ssh module

This commit is contained in:
John Lancaster
2026-03-10 22:37:03 -05:00
parent d6d882a418
commit 6c01156ffe

View File

@@ -3,6 +3,7 @@
flake.modules.nixos.lxc = { pkgs, lib, ...}: {
imports = [
({ modulesPath, ... }: { imports = [ "${modulesPath}/virtualisation/proxmox-lxc.nix" ]; })
inputs.self.modules.nixos.ssh
];
nixpkgs.hostPlatform = lib.mkForce "x86_64-linux";
system.stateVersion = "25.11";
@@ -14,7 +15,6 @@
flake.nixosConfigurations.lxc = inputs.nixpkgs.lib.nixosSystem {
modules = [
inputs.self.modules.nixos.lxc
inputs.self.modules.nixos.ssh
];
};
}