diff --git a/modules/nixos/lxc.nix b/modules/nixos/lxc.nix index b0f60cb..0e1a2f8 100644 --- a/modules/nixos/lxc.nix +++ b/modules/nixos/lxc.nix @@ -1,9 +1,9 @@ { inputs, ... }: { flake.modules.nixos.lxc = { pkgs, lib, ...}: { - imports = [ + imports = with inputs.self.modules.nixos; [ ({ modulesPath, ... }: { imports = [ "${modulesPath}/virtualisation/proxmox-lxc.nix" ]; }) - inputs.self.modules.nixos.ssh + ssh ]; nixpkgs.hostPlatform = lib.mkForce "x86_64-linux"; system.stateVersion = "25.11"; @@ -13,8 +13,8 @@ # Generic bootstrapping lxc, use a specific host file for more flake.nixosConfigurations.lxc = inputs.nixpkgs.lib.nixosSystem { - modules = [ - inputs.self.modules.nixos.lxc + modules = with inputs.self.modules.nixos; [ + lxc ]; }; }