1
0
mirror of https://github.com/Andrey0189/nixos-config-reborn.git synced 2025-09-15 10:06:00 +03:00
Files
nixos-config-reborn/home-manager/modules/wofi/default.nix
andrey_varnavskiy 26713ab65d wofi config rework
2024-12-14 06:14:18 +05:00

14 lines
225 B
Nix

{
programs.wofi = {
enable = true;
settings = {
allow_markup = true;
allow_images = true;
width = 350;
height = 450;
};
};
home.file.".config/wofi/style.css".source = ./style.css;
}