diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -45,5 +45,18 @@ }; default = caelestia-shell; }); + + devShells = forAllSystems (pkgs: { + default = let + shell = self.packages.${pkgs.system}.caelestia-shell; + in + pkgs.mkShellNoCC { + inputsFrom = [shell]; + packages = [pkgs.material-symbols]; + shellHook = '' + export CAELESTIA_BD_PATH=${shell}/bin/beat_detector + ''; + }; + }); }; } |