mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 02:36:54 +00:00
23 lines
388 B
Nix
23 lines
388 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
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}
|
||
|
'';
|
||
|
};
|
||
|
}
|