mirror of
https://github.com/nix-community/home-manager
synced 2024-11-13 06:39:44 +01:00
32 lines
780 B
Nix
32 lines
780 B
Nix
|
{ config, lib, options, ... }: {
|
||
|
programs.k9s = {
|
||
|
enable = true;
|
||
|
skin = {
|
||
|
k9s = {
|
||
|
body = {
|
||
|
fgColor = "dodgerblue";
|
||
|
bgColor = "#ffffff";
|
||
|
logoColor = "#0000ff";
|
||
|
};
|
||
|
info = {
|
||
|
fgColor = "lightskyblue";
|
||
|
sectionColor = "steelblue";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
test.asserts.warnings.enable = true;
|
||
|
test.asserts.warnings.expected = [
|
||
|
"The option `programs.k9s.skin' defined in ${
|
||
|
lib.showFiles options.programs.k9s.skin.files
|
||
|
} has been renamed to `programs.k9s.skins.skin'."
|
||
|
];
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.config/k9s/skins/skin.yaml
|
||
|
assertFileContent \
|
||
|
home-files/.config/k9s/skins/skin.yaml \
|
||
|
${./example-skin-expected.yaml}
|
||
|
'';
|
||
|
}
|