Simple flake for ~rkintzi/statusbar
Find a file
2024-10-16 13:08:17 +01:00
pkgs Initial Commit 2024-10-16 10:30:19 +01:00
flake.lock Initial Commit 2024-10-16 10:30:19 +01:00
flake.nix Initial Commit 2024-10-16 10:30:19 +01:00
README.md Updated README 2024-10-16 13:08:17 +01:00

Simple flake for statusbar

Installation

It is recommended to use the flake

Add to your flake inputs

    inputs.statusbar.url = "github:letThemPlay/statusbar";

Either pass in statusbar into your specialArgs or use inputs in your specialArgs when configuring your nixosSystem e.g.

  myHost = nixosSystem {
    inherit system pkgs;
    specialArgs = {
      inherit
        statusbar
    }
  }

Finally add it into your systempackages

    { statusbar, pkgs, ... }:

    environment.systemPackages = [ statusbar.packages.${pkgs.system}.default ];