2.home-manager/tests/modules/services/window-managers/i3/i3-fonts-deprecated.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07: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."
];
}