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