flake-managed zsh plugins

This commit is contained in:
LavaDesu 2021-07-14 11:02:42 +07:00
parent ced0bbf2a9
commit 1432ea461c
Signed by: cilly
GPG key ID: 6500251E087653C9
3 changed files with 88 additions and 39 deletions

View file

@ -7,6 +7,12 @@
home-manager.inputs.nixpkgs.follows = "nixpkgs";
neovim-nightly.inputs.nixpkgs.follows = "nixpkgs";
# zsh plugins
zsh-abbr = { url = "github:olets/zsh-abbr"; flake = false; };
zsh-history-substring-search = { url = "github:zsh-users/zsh-history-substring-search"; flake = false; };
zsh-fast-syntax-highlighting = { url = "github:zdharma/fast-syntax-highlighting"; flake = false; };
zsh-pure = { url = "github:sindresorhus/pure"; flake = false; };
};
outputs = inputs: with inputs;
@ -52,6 +58,7 @@
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = { inherit inputs; };
};
};
in
@ -65,6 +72,7 @@
./hosts/winter
secrets.nixosModules.winter
];
specialArgs = { inherit inputs; };
};
packages.x86_64-linux = customPackages nixpkgs.legacyPackages.x86_64-linux;
};