1
0
Fork 0
forked from emily/nixfiles

fix overlays

This commit is contained in:
emily 2024-05-14 03:48:04 +02:00
parent d9138d415d
commit 48765e36f6
Signed by untrusted user: emily
GPG key ID: F6F4C66207FCF995
2 changed files with 5 additions and 1 deletions

View file

@ -97,6 +97,9 @@
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
modules = [ modules = [
./config/hosts/lain/iso.nix ./config/hosts/lain/iso.nix
({ ... }: {
nixpkgs.overlays = [ self.overlays.kyouma self.overlays.otherPkgs ];
})
]; ];
}; };
}; };

View file

@ -13,7 +13,8 @@ while [[ $# -gt 0 ]]; do
shift shift
;; ;;
--branch) --branch)
BRANCH=$2 BRANCH="$2"
shift
shift shift
;; ;;
--no-delay) --no-delay)