diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-17 21:35:43 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-17 21:35:43 -0400 |
commit | f40273ec45e6676b975d42f4bc0c44a6392b7098 (patch) | |
tree | a896d01bed07fb1aa57d37b75d8fa2ad714e4ccf /pkgs/default.nix | |
parent | change color scheme basis (diff) | |
download | dotfiles-nix-f40273ec45e6676b975d42f4bc0c44a6392b7098.tar.gz dotfiles-nix-f40273ec45e6676b975d42f4bc0c44a6392b7098.tar.bz2 dotfiles-nix-f40273ec45e6676b975d42f4bc0c44a6392b7098.zip |
refactor styles to new color scheme basis
Diffstat (limited to '')
-rw-r--r-- | pkgs/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index 58e8f05..18b7c50 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -1,10 +1,11 @@ -{ pkgs, inputs, system, ... }: +{ pkgs, inputs, system, options, ... }: let build = (path: pkgs.callPackage path { inherit pkgs; inherit inputs; inherit system; + inherit options; }); in { |