diff --git a/system/wsl2/default.nix b/system/wsl2/default.nix index e409080..5be1beb 100644 --- a/system/wsl2/default.nix +++ b/system/wsl2/default.nix @@ -1,14 +1,24 @@ { inputs, username }: inputs.home-manager.lib.homeManagerConfiguration { + extraSpecialArgs = { inherit inputs; }; + modules = [ + { + nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (inputs.nixpkgs.lib.getName pkg) [ + "intelephense" + "postman" + "tabnine" + ]; + } + { imports = [ - ../home-manager/modules/common.nix - ../home-manager/modules/git.nix - ../home-manager/modules/home-manager.nix - ../home-manager/modules/tmux.nix - ../home-manager/modules/zsh.nix + ../../home-manager/modules/common.nix + ../../home-manager/modules/git.nix + ../../home-manager/modules/home-manager.nix + ../../home-manager/modules/tmux.nix + ../../home-manager/modules/zsh.nix ]; } ];