Files
nixos/henrovnix_ok/home/desktop/waybar.nix
T
2026-03-01 18:14:35 +01:00

15 lines
364 B
Nix

{ config, lib, pkgs, flakeRoot, ... }:
let
repoWaybarDir = flakeRoot.outPath + "/assets/conf/desktop/waybar";
in
{
programs.waybar.enable = true;
home.file.".config/waybar/config" = {
source = repoWaybarDir + "/config.jsonc";
};
home.file.".config/waybar/style.css" = {
source = repoWaybarDir + "/style.css";
};
programs.waybar.style = "";
}