actually added loki back to it

This commit is contained in:
John Lancaster
2024-12-07 14:13:34 -06:00
parent d741b62d2c
commit dd3de3c145

View File

@@ -34,6 +34,7 @@
${hostname} = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {inherit inputs outputs;};
# pkgs = import nixpkgs { system = "x86_64-linux"; };
modules = [
./configuration.nix # > Our main nixos configuration file <
"${nixpkgs}/nixos/modules/virtualisation/proxmox-lxc.nix"
@@ -43,6 +44,7 @@
})
vscode-server.nixosModules.default
({ config, pkgs, ... }: {services.vscode-server.enable = true;})
(import ./loki.nix { pkgs = nixpkgs.legacyPackages.${system}; userName = "${lokiUser}";})
];
};
};