diff options
Diffstat (limited to 'default.nix')
| -rw-r--r-- | default.nix | 39 |
1 files changed, 22 insertions, 17 deletions
diff --git a/default.nix b/default.nix index 05c9f40..a13388a 100644 --- a/default.nix +++ b/default.nix @@ -24,24 +24,29 @@ quickshell, aubio, pipewire, + caelestia-cli, + withCli ? false, }: let - runtimeDeps = [ - fish - ddcutil - brightnessctl - app2unit - cava - networkmanager - lm_sensors - grim - swappy - wl-clipboard - libqalculate - inotify-tools - bluez - bash - hyprland - ]; + runtimeDeps = + [ + fish + ddcutil + brightnessctl + app2unit + cava + networkmanager + lm_sensors + grim + swappy + wl-clipboard + libqalculate + inotify-tools + bluez + bash + hyprland + ] + ++ lib.optional withCli caelestia-cli; + fontconfig = makeFontsConf { fontDirectories = [material-symbols]; }; |