Installation#
Nix#
First, add the repository to your flake inputs:
Then, add it to environment.systemPackages:
{
pkgs,
inputs,
system,
...
}:
{
environment.systemPackages = with pkgs; [
inputs.frostbar.packages.${system}.default
# ...
]
# ...
}
Cargo#
First, clone the repository locally:
Then, navigate into the FrostBar directory and install using cargo: