1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-03 11:53:27 +02:00
home-manager/tests/modules/programs/wofi/basic-configuration.nix

36 lines
780 B
Nix
Raw Normal View History

{ 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}
'';
};
}