diff options
| author | anders130 <93037023+anders130@users.noreply.github.com> | 2025-08-13 15:09:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-13 23:09:44 +1000 |
| commit | 38b2ef006192b236f479a7134998383e581df4a3 (patch) | |
| tree | 3fea05550f986415f4958ee3911a4f6d8b9aec35 /nix/default.nix | |
| parent | internal: use icon os logo instead of nerd font (diff) | |
| download | caelestia-shell-38b2ef006192b236f479a7134998383e581df4a3.tar.gz caelestia-shell-38b2ef006192b236f479a7134998383e581df4a3.tar.bz2 caelestia-shell-38b2ef006192b236f479a7134998383e581df4a3.zip | |
nix: extend `hm-module` for CLI config options and add `extraRuntimeDeps` to package (#410)
* nix: make runtimeDeps extendible
* nix: add settings for caelestia-cli
* nix: fix option description
Diffstat (limited to 'nix/default.nix')
| -rw-r--r-- | nix/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nix/default.nix b/nix/default.nix index 8012721..4c2f7df 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -31,6 +31,7 @@ pipewire, caelestia-cli, withCli ? false, + extraRuntimeDeps ? [], }: let runtimeDeps = [ @@ -53,6 +54,7 @@ findutils file ] + ++ extraRuntimeDeps ++ lib.optional withCli caelestia-cli; fontconfig = makeFontsConf { |