2025-03-13 18:05:15 -04:00

8 lines
180 B
Nix

{ lib, machineConfig, ... }:
lib.mkIf (!machineConfig.server) {
programs.waybar = {
enable = true;
settings = builtins.fromJSON (builtins.readFile ./waybar.json);
};
}