Skip to content

Installation#

Nix#

First, add the repository to your flake inputs:

inputs = {
  frostbar.url = "github:Ind-E/FrostBar";

  # ...
};

Then, add it to environment.systemPackages:

{
  pkgs,
  inputs,
  system,
  ...
}:
{
  environment.systemPackages = with pkgs; [

    inputs.frostbar.packages.${system}.default
    # ...
  ]
  # ...
}

Cargo#

First, clone the repository locally:

git clone https://github.com/Ind-E/FrostBar

Then, navigate into the FrostBar directory and install using cargo:

cargo install --path .