1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 18:57:22 +00:00
home-manager/tests/modules/programs/jqp/basic-configuration.nix

15 lines
270 B
Nix
Raw Normal View History

2025-02-22 16:23:01 +00:00
{
programs = {
jqp = {
enable = true;
settings = { theme.name = "catppuccin-frappe"; };
};
};
nmt.script = ''
assertFileExists home-files/.jqp.yaml
assertFileContent home-files/.jqp.yaml \
${./basic-configuration.yaml}
'';
}