summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2023-07-23 22:36:44 -0400
committerseth <[email protected]>2023-07-24 03:56:43 +0000
commit98da16978b3b6ea270d559639cda87383c452cd3 (patch)
tree5b3a6936e6692db80bac45e577b1c41255ab651a
parentd5a3a0ea13bcdd123bbd36ce84e615a0d1d6f018 (diff)
profiles: put self overlay in common
-rw-r--r--hosts/profiles.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/hosts/profiles.nix b/hosts/profiles.nix
index 5fa495a..5b200c2 100644
--- a/hosts/profiles.nix
+++ b/hosts/profiles.nix
@@ -4,7 +4,7 @@
}: let
common = {
nixpkgs = {
- overlays = with inputs; [nur.overlay getchoo.overlays.default];
+ overlays = with inputs; [nur.overlay getchoo.overlays.default self.overlays.default];
config.allowUnfree = true;
};
@@ -56,8 +56,6 @@ in {
};
};
- nixpkgs.overlays = [self.overlays.default];
-
getchoo.base.enable = true;
system.stateVersion = "23.11";
}