diff --git a/flake.nix b/flake.nix index 7df066f..52be66f 100644 --- a/flake.nix +++ b/flake.nix @@ -37,7 +37,9 @@ overlays = import ./overlays { inherit inputs outputs; }; - packages = forEachSystem (pkgs: import ./pkgs { inherit pkgs; }); + packages = forEachSystem (pkgs: { + live-buds-cli = pkgs.callPackage ./pkgs/live-buds-cli { }; + }); devShells = forEachSystem (pkgs: import ./shell.nix { inherit pkgs; }); formatter = forEachSystem (pkgs: pkgs.nixpkgs-fmt); diff --git a/home/ooks/opt/shell/default.nix b/home/ooks/opt/shell/default.nix index b9eba86..7bc21b2 100644 --- a/home/ooks/opt/shell/default.nix +++ b/home/ooks/opt/shell/default.nix @@ -8,7 +8,6 @@ ./starship.nix ./joshuto ./helix -# ./live-buds-cli.nix ]; home.packages = with pkgs; [ bc # Calculator diff --git a/system/common/opt/bluetooth.nix b/system/common/opt/bluetooth.nix index f8eb579..757a079 100644 --- a/system/common/opt/bluetooth.nix +++ b/system/common/opt/bluetooth.nix @@ -7,6 +7,7 @@ environment.systemPackages = with pkgs; [ galaxy-buds-client - bluetuith + live-buds-cli + bluetuith ]; }