1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 08:28:30 +02:00
home-manager/tests/modules/services/devilspie2/configuration.nix
Robert Helgesson cb09a968e9
tests: add option test.stubs
This option provides a more convenient way to overlay dummy packages.
It also adds a function `config.lib.test.mkStubPackage` that can,
e.g., be used for `package` options.
2021-09-26 23:26:38 +02:00

38 lines
842 B
Nix

{ config, pkgs, ... }: {
config = {
services.devilspie2 = {
enable = true;
config = ''
if (get_window_class() == "Gnome-terminal") then
make_always_on_top();
end
if string.match(get_window_name(), "LibreOffice Writer") then
maximize();
end
if (get_window_class()=="Org.gnome.Nautilus") then
set_window_geometry(1600,300,900,700);
end
'';
};
test.stubs.devilspie2 = { };
nmt.script = ''
configlua=home-files/.config/devilspie2/config.lua
assertFileExists $configlua
assertFileContent $configlua ${./config.lua}
serviceFile=home-files/.config/systemd/user/devilspie2.service
assertFileExists $serviceFile
assertFileRegex $serviceFile 'ExecStart=.*/bin/devilspie2'
'';
};
}