12 lines
223 B
Nix
12 lines
223 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
programs.waybar = {
|
|
enable = true;
|
|
systemd.enable = true;
|
|
};
|
|
|
|
xdg.configFile = {
|
|
"waybar/config.jsonc".source = ./config.jsonc;
|
|
"waybar/style.css".source = ./style.css;
|
|
};
|
|
}
|