summaryrefslogtreecommitdiff
path: root/modules/shared
diff options
context:
space:
mode:
authorseth <[email protected]>2023-12-11 06:44:34 -0500
committerseth <[email protected]>2023-12-11 06:44:34 -0500
commit8ac8de2593a9f5e3c160f95358b4db75d3a04640 (patch)
tree9d37f6a1c6466ebf944d562dc03081354ed40f5d /modules/shared
parentc99900f83de5f44797465845fe5ffb83efb286e0 (diff)
systems+seth: add inputs' to module.args; use flake for firefox addons
Diffstat (limited to 'modules/shared')
-rw-r--r--modules/shared/nix.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/shared/nix.nix b/modules/shared/nix.nix
index d496f72..7ca3f1d 100644
--- a/modules/shared/nix.nix
+++ b/modules/shared/nix.nix
@@ -3,12 +3,13 @@
lib,
pkgs,
inputs,
+ self,
...
}: {
nix = {
registry = {
n.flake = lib.mkDefault inputs.nixpkgs;
- self.flake = inputs.self;
+ self.flake = self;
};
nixPath = [
@@ -31,7 +32,7 @@
};
nixpkgs = {
- overlays = with inputs; [nur.overlay getchoo.overlays.default self.overlays.default];
+ overlays = with inputs; [getchoo.overlays.default self.overlays.default];
config.allowUnfree = lib.mkDefault true;
};
}