1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-01 10:58:31 +02:00
home-manager/tests/modules/programs/wofi/basic-configuration.nix
Christoph Heiss 5160039edc
wofi: add module (#3786)
Signed-off-by: Christoph Heiss <christoph@c8h4.io>
2023-04-20 00:11:30 -06:00

36 lines
780 B
Nix

{ pkgs, ... }:
{
config = {
programs.wofi = {
enable = true;
package = pkgs.writeScriptBin "dummy-wofi" "";
style = ''
* {
font-family: monospace;
}
window {
background-color: #7c818c;
}
'';
settings = {
drun-print_command = true;
insensitive = true;
show = "drun";
xoffset = 50;
yoffset = 200;
};
};
nmt.script = ''
assertFileExists home-files/.config/wofi/config
assertFileContent home-files/.config/wofi/config \
${./basic-configuration.conf}
assertFileExists home-files/.config/wofi/style.css
assertFileContent home-files/.config/wofi/style.css \
${./basic-style.css}
'';
};
}