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.nix

18 lines
318 B
Nix
Executable File

{ config, pkgs, lib, ... }:
{
xdg.configFile."wob/wob.ini".text = lib.generators.toINIWithGlobalSection { } {
globalSection = {
height = "40";
border_size = "2";
border_color = "D65D0EFF";
background_color = "282828FF";
bar_color = "D65D0EFF";
};
sections = { };
};
}