diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-20 01:40:00 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-20 01:40:00 +0200 |
commit | e8445768de29b7bef9d6fc0c8946970a6ea31c92 (patch) | |
tree | 032d4e12db081975ac47912ebb49283d48e94741 /overlays | |
parent | Added NVIDIA drivers for phobos (diff) | |
download | nixos-config-e8445768de29b7bef9d6fc0c8946970a6ea31c92.tar.gz nixos-config-e8445768de29b7bef9d6fc0c8946970a6ea31c92.tar.bz2 nixos-config-e8445768de29b7bef9d6fc0c8946970a6ea31c92.zip |
Add overlay composing
Diffstat (limited to 'overlays')
-rw-r--r-- | overlays/default.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/overlays/default.nix b/overlays/default.nix new file mode 100644 index 0000000..bb4f07a --- /dev/null +++ b/overlays/default.nix @@ -0,0 +1,7 @@ +final: prev: +let + overlays = [ + (import ./base.nix) + ]; +in +prev.lib.composeManyExtensions overlays final prev |