{ config, lib, pkgs, namespace, ... }: { imports = [ (lib.${namespace}.mkHomeModule { inherit config; domain = "programs"; name = "nwg-drawer"; moduleConfig = { home.packages = with pkgs; [ nwg-drawer ]; home.file.".config/nwg-drawer/drawer.css".text = '' window { background-color: ${config.lib.stylix.colors.base00}bf; color: ${config.lib.stylix.colors.base05}00 } entry { background-color: ${config.lib.stylix.colors.base01}0f } button, image { background: none; border: none } button:hover { background-color: ${config.lib.stylix.colors.base0F}1a } #category-button { margin: 0 10px 0 10px } #pinned-box { padding-bottom: 5px; border-bottom: 1px dotted ${config.lib.stylix.colors.base03} } #files-box { padding: 5px; border: 1px dotted ${config.lib.stylix.colors.base03}; border-radius: 15px } ''; }; }) ]; }