15 lines
364 B
Nix
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 = "";
|
|
}
|