mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 18:57:22 +00:00
19 lines
348 B
Nix
19 lines
348 B
Nix
|
{
|
||
|
config = {
|
||
|
programs.kitty = {
|
||
|
enable = true;
|
||
|
|
||
|
shellIntegration.mode = null;
|
||
|
};
|
||
|
|
||
|
test.stubs.kitty = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.config/kitty/kitty.conf
|
||
|
assertFileContent \
|
||
|
home-files/.config/kitty/kitty.conf \
|
||
|
${./null-shellIntegration-expected.conf}
|
||
|
'';
|
||
|
};
|
||
|
}
|