summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-03-05 21:03:13 -0500
committerseth <[email protected]>2023-03-05 21:03:13 -0500
commita430e3115c4b02297fef614d957981cb3bb25b2b (patch)
treeba37d3b60e5a398e5c3aa0f88259ecd3bf71733b /flake.nix
parent46a9e8fe282b847f8afa6e5a4ff6e021948485db (diff)
add gradience
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index d310195..eebf6e8 100644
--- a/flake.nix
+++ b/flake.nix
@@ -20,8 +20,10 @@
aarch64-darwin
];
packageSet = pkgs:
- with pkgs; {
+ with pkgs; rec {
treefetch = callPackage ./pkgs/treefetch.nix {inherit naersk;};
+ material-color-utilities = callPackage ./pkgs/material-color-utilities.nix {};
+ gradience = callPackage ./pkgs/gradience.nix {inherit material-color-utilities;};
};
overrides = prev: {
discord-canary = import ./pkgs/discord-canary.nix prev;