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
Feliche-Demian Netliukh 4949081d1e
jqp: add module (#5716)
2025-02-22 10:23:01 -06:00

14 lines
270 B
Nix

{
programs = {
jqp = {
enable = true;
settings = { theme.name = "catppuccin-frappe"; };
};
};
nmt.script = ''
assertFileExists home-files/.jqp.yaml
assertFileContent home-files/.jqp.yaml \
${./basic-configuration.yaml}
'';
}