nix/hosts/nixos-laptop/home-manager/waybar-conf.nix
2023-08-15 18:50:55 +09:00

17 lines
No EOL
348 B
Nix

{ hostname, ...}: {
home.file = {
# https://yewtu.be/watch?v=tWQB1NDDA9c
# Waybar configuration
".config/waybar/config.jsonc" = {
enable = true;
executable = false;
text = "";
};
# Waybar theming
".config/waybar/style.css" = {
enable = true;
executable = false;
text = "";
};
};
}