summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoramane <61896496+soramanew@users.noreply.github.com>2025-07-21 17:58:42 +1000
committerSoramane <61896496+soramanew@users.noreply.github.com>2025-07-21 17:58:42 +1000
commitba45106e7eba2a9e54f0b0721071c99eb6e84a42 (patch)
tree839b25b9a74a084bc9dc415be564c95aebae8e72
parentreadme: add tip for beat detector manual install (diff)
downloadcaelestia-shell-ba45106e7eba2a9e54f0b0721071c99eb6e84a42.tar.gz
caelestia-shell-ba45106e7eba2a9e54f0b0721071c99eb6e84a42.tar.bz2
caelestia-shell-ba45106e7eba2a9e54f0b0721071c99eb6e84a42.zip
nix: add jetbrains mono to deps (#234)
temp until fonts are configurable
-rw-r--r--default.nix3
-rw-r--r--flake.nix2
2 files changed, 3 insertions, 2 deletions
diff --git a/default.nix b/default.nix
index 575c2b3..3396de0 100644
--- a/default.nix
+++ b/default.nix
@@ -23,6 +23,7 @@
findutils,
file,
material-symbols,
+ nerd-fonts,
gcc,
quickshell,
aubio,
@@ -54,7 +55,7 @@
++ lib.optional withCli caelestia-cli;
fontconfig = makeFontsConf {
- fontDirectories = [material-symbols];
+ fontDirectories = [material-symbols nerd-fonts.jetbrains-mono];
};
in
stdenv.mkDerivation {
diff --git a/flake.nix b/flake.nix
index 0465865..be497ec 100644
--- a/flake.nix
+++ b/flake.nix
@@ -53,7 +53,7 @@
in
pkgs.mkShellNoCC {
inputsFrom = [shell];
- packages = [pkgs.material-symbols];
+ packages = with pkgs; [material-symbols nerd-fonts.jetbrains-mono];
CAELESTIA_BD_PATH = "${shell}/bin/beat_detector";
QT_LOGGING_RULES = builtins.concatStringsSep ";" [
"quickshell.dbus.properties.warning=false"