mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01:00
kakoune: fix tests
Following https://github.com/NixOS/nixpkgs/pull/91792
This commit is contained in:
parent
9e9d8ffc7c
commit
4cc1b77c3f
2 changed files with 3 additions and 5 deletions
|
@ -7,7 +7,7 @@ with lib;
|
||||||
programs.kakoune = { enable = true; };
|
programs.kakoune = { enable = true; };
|
||||||
|
|
||||||
nmt.script = ''
|
nmt.script = ''
|
||||||
assertFileNotRegex home-path/share/kak/plugins.kak . # file is empty
|
assertPathNotExists home-path/share/kak/autoload/plugins
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,10 +9,8 @@ with lib;
|
||||||
plugins = [ pkgs.kakounePlugins.kak-powerline ];
|
plugins = [ pkgs.kakounePlugins.kak-powerline ];
|
||||||
};
|
};
|
||||||
|
|
||||||
nmt.script = let plugins_kak = "home-path/share/kak/plugins.kak";
|
nmt.script = ''
|
||||||
in ''
|
assertDirectoryNotEmpty home-path/share/kak/autoload/plugins
|
||||||
assertFileRegex ${plugins_kak} \
|
|
||||||
'^source "/nix/store/.*-kak-powerline/share/kak/autoload/plugins/powerline/.*.kak"$'
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue