add: custom package live-buds-cli

This commit is contained in:
ooks-io 2023-10-21 21:15:20 +13:00
parent 346ba214e6
commit d5cc5aaf8f
3 changed files with 5 additions and 3 deletions

View file

@ -37,7 +37,9 @@
overlays = import ./overlays { inherit inputs outputs; }; 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; }); devShells = forEachSystem (pkgs: import ./shell.nix { inherit pkgs; });
formatter = forEachSystem (pkgs: pkgs.nixpkgs-fmt); formatter = forEachSystem (pkgs: pkgs.nixpkgs-fmt);

View file

@ -8,7 +8,6 @@
./starship.nix ./starship.nix
./joshuto ./joshuto
./helix ./helix
# ./live-buds-cli.nix
]; ];
home.packages = with pkgs; [ home.packages = with pkgs; [
bc # Calculator bc # Calculator

View file

@ -7,6 +7,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
galaxy-buds-client galaxy-buds-client
bluetuith live-buds-cli
bluetuith
]; ];
} }