Files
.github
.vscode
disko
docs
hydra
keys
lib
modules
pkgs
systems
users
alice
home
doom
hypr
gammastep.nix
git.nix
waybar.json
waybar.nix
zsh.nix
default.nix
home.nix
non-server.nix
secrets.yaml
default.nix
utils
.envrc
.gitconfig
.gitignore
.sops.yaml
CONTRIBUTING.md
README.md
checks.nix
flake.lock
flake.nix
shell.nix
statix.toml
treefmt.toml
nix-dotfiles/users/alice/home/waybar.nix
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);
};
}