[NixOS] Disable nix overlay

This commit is contained in:
Ivan Malison 2023-12-15 20:23:19 -07:00
parent f933f5527d
commit 98b49c63d4
3 changed files with 1 additions and 7 deletions

View File

@ -10,5 +10,3 @@ function split_by_char {
} }
split_by_char "$@" split_by_char "$@"

View File

@ -59,10 +59,6 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
nix = {
url = "github:IvanMalison/nix/my2.15.1";
};
flake-utils = { flake-utils = {
url = "github:numtide/flake-utils"; url = "github:numtide/flake-utils";
inputs.systems.follows = "systems"; inputs.systems.follows = "systems";

View File

@ -6,7 +6,7 @@
options = { options = {
imalison.nixOverlay.enable = lib.mkOption { imalison.nixOverlay.enable = lib.mkOption {
default = true; default = false;
type = lib.types.bool; type = lib.types.bool;
}; };
}; };