1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-20 13:27:29 +02:00
home-manager/tests/modules/services/glance/example-settings.nix
2024-06-28 17:24:13 +02:00

33 lines
688 B
Nix

{ ... }:
{
services.glance = {
enable = true;
settings = {
server.port = 5678;
pages = [{
name = "Home";
columns = [{
size = "full";
widgets = [
{ type = "calendar"; }
{
type = "weather";
location = "London, United Kingdom";
}
];
}];
}];
};
};
test.stubs.glance = { };
nmt.script = ''
configFile=home-files/.config/glance/glance.yml
serviceFile=home-files/.config/systemd/user/glance.service
assertFileContent $configFile ${./glance-example-config.yml}
assertFileContent $serviceFile ${./glance.service}
'';
}