summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2023-07-23 21:17:45 -0400
committerseth <[email protected]>2023-07-23 21:17:45 -0400
commit418fb8a9c75cfa4c10e0257d3aec43443cadca2a (patch)
tree89898e139e535ed4fe9805002f4498e15c4b180b
parent044a1fb4126b69f43e6fe1de48f62ca770ae3d3f (diff)
hosts: only use self overlay on linux
-rw-r--r--hosts/profiles.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/hosts/profiles.nix b/hosts/profiles.nix
index 83f2a6c..195da1a 100644
--- a/hosts/profiles.nix
+++ b/hosts/profiles.nix
@@ -4,7 +4,7 @@
}: let
common = {
nixpkgs = {
- overlays = with inputs; [nur.overlay getchoo.overlays.default self.overlays.default];
+ overlays = with inputs; [nur.overlay getchoo.overlays.default];
config.allowUnfree = true;
};
@@ -56,6 +56,8 @@ in {
};
};
+ nixpkgs.overlays = [self.overlays.default];
+
getchoo.base.enable = true;
system.stateVersion = "23.11";
}