This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/wayland/wob/default.nix

21 lines
393 B
Nix
Executable File

{ config, pkgs, lib, ... }:
let
colors = config.colorScheme.colors;
in
{
xdg.configFile."wob/wob.ini".text = lib.generators.toINIWithGlobalSection { } {
globalSection = {
height = "40";
border_size = "2";
border_color = "${colors.base0F}FF";
background_color = "${colors.base00}FF";
bar_color = "${colors.base0F}FF";
};
sections = { };
};
}