nix/hosts/nixos-laptop/home-manager/waybar-conf.nix

18 lines
403 B
Nix
Raw Normal View History

2023-08-14 08:04:03 +02:00
{...}: {
2023-08-14 14:57:17 +02:00
home.file = {
2023-08-14 08:04:03 +02:00
# Called from: /hosts/${hostname}/desktops/hyprland-conf.nix
# https://yewtu.be/watch?v=tWQB1NDDA9c
# Waybar configuration
2023-08-14 15:06:52 +02:00
".config/waybar/config.jsonc" = {
2023-08-14 08:04:03 +02:00
enable = true;
executable = false;
text = "";
2023-08-14 14:57:37 +02:00
};
2023-08-14 08:04:03 +02:00
# Waybar theming
2023-08-14 15:06:52 +02:00
".config/waybar/style.css" = {
2023-08-14 08:04:03 +02:00
enable = true;
executable = false;
text = "";
};
2023-08-14 14:57:17 +02:00
};
2023-08-14 08:04:03 +02:00
}