[NixOS] Disable nix overlay for jay-lenovo-wsl
This commit is contained in:
parent
d626450f7d
commit
7395f52529
@ -4,6 +4,7 @@
|
|||||||
../configuration.nix
|
../configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
imalison.nixOverlay.enable = false;
|
||||||
modules.wsl.enable = true;
|
modules.wsl.enable = true;
|
||||||
|
|
||||||
networking.hostName = "jay-lenovo-wsl";
|
networking.hostName = "jay-lenovo-wsl";
|
||||||
|
@ -1,8 +1,16 @@
|
|||||||
{ inputs, specialArgs, config, ... }:
|
{ inputs, specialArgs, config, lib, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
inputs.home-manager.nixosModule
|
inputs.home-manager.nixosModule
|
||||||
];
|
];
|
||||||
|
|
||||||
|
options = {
|
||||||
|
imalison.nixOverlay.enable = lib.mkOption {
|
||||||
|
default = true;
|
||||||
|
type = lib.types.bool;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
config = {
|
||||||
home-manager.extraSpecialArgs = {
|
home-manager.extraSpecialArgs = {
|
||||||
nixos = {
|
nixos = {
|
||||||
inherit specialArgs config;
|
inherit specialArgs config;
|
||||||
@ -26,11 +34,11 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
nixpkgs.overlays = with inputs; [
|
nixpkgs.overlays = [
|
||||||
nix.overlays.default
|
|
||||||
(import ./overlay.nix)
|
(import ./overlay.nix)
|
||||||
];
|
] ++ (if config.imalison.nixOverlay.enable then [ inputs.nix.overlays.default ] else []);
|
||||||
|
|
||||||
# Allow all the things
|
# Allow all the things
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user