Allow standalone home-manager installation

This commit is contained in:
Leonardo Eugênio 2023-01-23 20:56:18 -03:00
parent 55a36b27e2
commit 7025bdae9e
6 changed files with 91 additions and 60 deletions

View file

@ -1,6 +1,7 @@
# Custom packages, that can be defined similarly to ones from nixpkgs
# You can build them using 'nix build .#example' or (legacy) 'nix-build -A example'
{ pkgs }: {
{ pkgs, inputs }: {
dzgui = pkgs.callPackage ./dzgui.nix { };
plymouth-theme-red = pkgs.callPackage ./plymouth-theme-red.nix { inherit inputs; };
}