Files
nix-dotfiles/users/alice/home/waybar.nix
T

8 lines
180 B
Nix
Raw Normal View History

{ lib, machineConfig, ... }:
lib.mkIf (!machineConfig.server) {
2024-04-01 09:44:28 -04:00
programs.waybar = {
enable = true;
2025-03-13 17:43:41 -04:00
settings = builtins.fromJSON (builtins.readFile ./waybar.json);
2024-04-01 09:44:28 -04:00
};
}