diff options
author | Soispha <soispha@vhack.eu> | 2023-08-02 14:57:01 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-08-19 17:34:09 +0200 |
commit | 1194d84bda54c65b06b54d4fc5a6585aa0f7e9ec (patch) | |
tree | 32444d3526c52482d7e5b2bb0e4b0012fc470cb2 /system/nixpkgs/default.nix | |
parent | Fix(hm/packages): Add iamb and remove nheko (diff) | |
download | nixos-config-1194d84bda54c65b06b54d4fc5a6585aa0f7e9ec.zip |
Feat(flake): Import the nixNeovim module
Diffstat (limited to 'system/nixpkgs/default.nix')
-rw-r--r-- | system/nixpkgs/default.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/system/nixpkgs/default.nix b/system/nixpkgs/default.nix index 1e371e53..4f869e4a 100644 --- a/system/nixpkgs/default.nix +++ b/system/nixpkgs/default.nix @@ -1,9 +1,10 @@ { lib, system, - ... + overlays ? [], }: { - inherit system; + # TODO inheriting system here is discouraged, localSystem or hostSystem should be inspected + inherit system overlays; config = { # TODO this fails because of the root tempsize, which should be increased #contentAddressedByDefault = true; |