fix(wsl2): inherits, import paths, unfree packages
This commit is contained in:
parent
eac470013b
commit
482a74a5e0
|
@ -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
|
||||
];
|
||||
}
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue