From 97124a3f122087910d8e1751f560ece16527ce86 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Tue, 17 Dec 2024 09:25:13 -0800 Subject: add support for overlays and add one for `sapi' --- nix/lib/overlays.nix | 6 ++++++ nix/users/fcuny/darwin.nix | 2 ++ 2 files changed, 8 insertions(+) create mode 100644 nix/lib/overlays.nix (limited to 'nix') diff --git a/nix/lib/overlays.nix b/nix/lib/overlays.nix new file mode 100644 index 0000000..1ec6f49 --- /dev/null +++ b/nix/lib/overlays.nix @@ -0,0 +1,6 @@ +let path = ../../overlays; +in with builtins; +map (n: import (path + ("/" + n))) (filter + (n: + match ".*\\.nix" n != null || pathExists (path + ("/" + n + "/default.nix"))) + (attrNames (readDir path))) diff --git a/nix/users/fcuny/darwin.nix b/nix/users/fcuny/darwin.nix index b56a67d..b882bc5 100644 --- a/nix/users/fcuny/darwin.nix +++ b/nix/users/fcuny/darwin.nix @@ -1,4 +1,6 @@ { pkgs, ... }: { + nixpkgs.overlays = import ../../../nix/lib/overlays.nix; + # The user should already exist, but we need to set this up so Nix knows # what our home directory is (https://github.com/LnL7/nix-darwin/issues/423). users.users.fcuny = { -- cgit v1.2.3