diff --git a/flake.nix b/flake.nix index a2ad4e4..b58302d 100644 --- a/flake.nix +++ b/flake.nix @@ -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}";}) ]; }; };