This commit is contained in:
kenji
2025-07-15 17:44:14 -05:00
parent dd36c2711a
commit 33c6170c15
9 changed files with 108 additions and 37 deletions
+8 -6
View File
@@ -1,14 +1,16 @@
{
inputs,
pkgs,
system,
...
}: {
imports = [
inputs.caelestia-shell.nixosModules.default
environment.systemPackages = [
inputs.caelestia-shell.packages.${system}.caelestia-shell
inputs.caelestia-shell.packages.${system}.caelestia-cli
inputs.caelestia-shell.packages.${system}.beat-detector
];
servies.caelestia-shell = {
enable = true;
config = {
};
environment.sessionVariables = {
# Set CAELESTIA_BD_PATH to the store path of beat-detector
CAELESTIA_BD_PATH = "${inputs.caelestia-shell.packages.${system}.beat-detector}/bin/beat_detector";
};
}