This commit is contained in:
2024-04-02 00:13:41 +01:00
parent 3f9eed307f
commit fb6a7851d8
2 changed files with 21 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
inputs,
lib,
config,
pkgs,
...
}:
let
home = builtins.getEnv "HOME";
in
{
programs.waybar = {
enable = true;
systemd.enable = true;
style = ''
${builtins.readFile ../style.css}
'';
};
}