diff --git a/flake.nix b/flake.nix index 697259d..c987323 100644 --- a/flake.nix +++ b/flake.nix @@ -47,5 +47,6 @@ "aarch64-linux" "riscv64-linux" ]; + flake.overlays.default = import ./packages/overlays.nix; }; } diff --git a/packages/overlays.nix b/packages/overlays.nix new file mode 100644 index 0000000..99667ab --- /dev/null +++ b/packages/overlays.nix @@ -0,0 +1,12 @@ +# Copyright 2024 TII (SSRC) and the Ghaf contributors +# SPDX-License-Identifier: Apache-2.0 +( + _final: prev: + let + inherit (prev) callPackage; + in + { + ghaf-artwork = callPackage ./ghaf-artwork { }; + ghaf-theme = callPackage ./ghaf-theme { }; + } +)