mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 18:57:22 +00:00
15 lines
270 B
Nix
15 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}
|
||
|
'';
|
||
|
}
|