2.home-manager/tests/modules/services/i3/i3-fonts-deprecated.nix
Austin Horstman 06c1392ca8 tests: implement auto importing for modules
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-06-22 23:58:37 -05:00

40 lines
968 B
Nix

{
imports = [ ./i3-stubs.nix ];
xsession.windowManager.i3 = {
enable = true;
config = {
bars = [
{
fonts = [
"FontAwesome"
"Iosevka 11.500000"
];
}
{
fonts = [
"FontAwesome"
"Iosevka Bold Semi-Condensed 14px"
];
}
];
fonts = [
"DejaVuSansMono"
"Terminus Bold Semi-Condensed 13.500000"
];
};
};
nmt.script = ''
assertFileExists home-files/.config/i3/config
assertFileContent home-files/.config/i3/config \
${./i3-fonts-expected.conf}
'';
test.asserts.warnings.expected = [
"Specifying i3.config.fonts as a list is deprecated. Use the attrset version instead."
"Specifying i3.config.bars[].fonts as a list is deprecated. Use the attrset version instead."
"Specifying i3.config.bars[].fonts as a list is deprecated. Use the attrset version instead."
];
}