add discover
This commit is contained in:
parent
f83b5bd0f9
commit
0e608a0fdf
4 changed files with 49 additions and 1 deletions
|
|
@ -13,6 +13,9 @@
|
|||
zsh-history-substring-search = { url = "github:zsh-users/zsh-history-substring-search"; flake = false; };
|
||||
fast-syntax-highlighting = { url = "github:zdharma/fast-syntax-highlighting"; flake = false; };
|
||||
pure = { url = "github:sindresorhus/pure"; flake = false; };
|
||||
|
||||
# overlays
|
||||
discover = { url = "github:trigg/Discover"; flake = false; };
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, home-manager, secrets, ... } @ inputs:
|
||||
|
|
@ -47,11 +50,12 @@
|
|||
let
|
||||
callPackage = pkgs.callPackage;
|
||||
in {
|
||||
discover-overlay = callPackage ./packages/discover {};
|
||||
linux-lava = callPackage ./packages/linux-lava {};
|
||||
wine-osu = callPackage ./packages/wine-osu { inherit getPaths; };
|
||||
};
|
||||
|
||||
overlays = (builtins.map
|
||||
overlays = [ (self: super: { inherit inputs; }) ] ++ (builtins.map
|
||||
(path: import path) # Imports path
|
||||
(builtins.filter
|
||||
(path: lib.hasSuffix ".nix" path) # Checks file extension
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue