diff options
| author | Soramane <61896496+soramanew@users.noreply.github.com> | 2025-07-16 16:44:16 +1000 |
|---|---|---|
| committer | Soramane <61896496+soramanew@users.noreply.github.com> | 2025-07-16 16:44:16 +1000 |
| commit | 1c0f00d3c5f0805fd7b15802d7684887dce1024a (patch) | |
| tree | 79ac6dbfc1b552482444539897c3577b1db7b3a7 | |
| parent | nix: add coreutils & findutils deps (diff) | |
| download | caelestia-shell-1c0f00d3c5f0805fd7b15802d7684887dce1024a.tar.gz caelestia-shell-1c0f00d3c5f0805fd7b15802d7684887dce1024a.tar.bz2 caelestia-shell-1c0f00d3c5f0805fd7b15802d7684887dce1024a.zip | |
nix: add direnv support
| -rw-r--r-- | .envrc | 1 | ||||
| -rw-r--r-- | flake.nix | 13 |
2 files changed, 14 insertions, 0 deletions
@@ -0,0 +1 @@ +use flake @@ -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 + ''; + }; + }); }; } |