diff options
author | Linnnus <[email protected]> | 2023-09-10 19:39:43 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2023-09-10 19:39:43 +0200 |
commit | 66a247f37b43736c7cdc8ad07dba7cb9133ae745 (patch) | |
tree | 446532de3330b270fb7c8c809b6f6d1c0f504383 /flake.nix | |
parent | 1c5de21b1f5ad12c2f21a988cc36ee97fcbe4bbe (diff) |
Use overlays system-wide
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -13,9 +13,10 @@ }; }; - outputs = { nixpkgs, home-manager, nix-darwin, ... }@inputs: + outputs = { self, nixpkgs, home-manager, nix-darwin, ... }@inputs: let args = { + inherit self; flakeInputs = inputs; metadata = nixpkgs.lib.importTOML ./metadata.toml; }; @@ -31,7 +32,6 @@ ./hosts/muhammed/configuration.nix ./hosts/common.nix ./home - { nixpkgs.overlays = [ (import ./pkgs/overlay.nix) ]; } # FIXME: Get the following to work without nix-darwin bithcing about unused NixOS options. # ./lib # ./modules @@ -49,7 +49,6 @@ ./hosts/ahmed/configuration.nix ./hosts/common.nix ./home - { nixpkgs.overlays = [ (import ./pkgs/overlay.nix) ]; } ./lib ./modules ./services |