Evie Litherland-Smith
7b9d0a41d6
Add separate config files for waybar, fuzzel, mako Enable gnome-keyring as secret-service, with seahorse for interface Restructure desktop-related things into a desktop directory
18 lines
345 B
Nix
18 lines
345 B
Nix
{ config, ... }:
|
|
{
|
|
services.mako = {
|
|
enable = true;
|
|
anchor = "top-right";
|
|
width = 600;
|
|
height = 600;
|
|
layer = "top";
|
|
markup = true;
|
|
maxVisible = 10;
|
|
icons = true;
|
|
iconPath = with config.gtk.iconTheme; "${package}/share/icons/${name}";
|
|
borderRadius = 5;
|
|
borderSize = 1;
|
|
defaultTimeout = 0;
|
|
};
|
|
}
|