diff options
author | Linnnus <[email protected]> | 2024-12-21 16:04:31 +0100 |
---|---|---|
committer | Linnnus <[email protected]> | 2024-12-21 16:19:09 +0100 |
commit | 334250012b41c3fd2b2dc177b0a14bd23e13d672 (patch) | |
tree | 20a61d1e40614f4864f679ec02987c1b7c1cd647 /overlays/compat.nix | |
parent | c7a50827e444e08a6e14d18c90a85109121ecda3 (diff) |
Define packages in overlays/additions
Diffstat (limited to 'overlays/compat.nix')
-rw-r--r-- | overlays/compat.nix | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/overlays/compat.nix b/overlays/compat.nix index 76bef87..0f7aeb4 100644 --- a/overlays/compat.nix +++ b/overlays/compat.nix @@ -1,11 +1,9 @@ # Returns a list of overlays such that this file can be used for the value of # nixpkgs-overlays in NIX_PATH. # -# See: hosts/common.nix +# See: shared/nixos/common-nix-options/ # See: https://nixos.org/manual/nixpkgs/stable/#sec-overlays-lookup -let - overlays = import ./default.nix; -in [ - overlays.additions - overlays.modifications +[ + (import ./additions.nix) + (import ./modifications.nix) ] |