1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-10 07:08:44 +02:00
home-manager/tests/modules/services/window-managers/i3/i3-fonts-deprecated.nix
2023-05-13 00:09:52 +02:00

26 lines
664 B
Nix

{ ... }:
{
imports = [ ./i3-stubs.nix ];
xsession.windowManager.i3 = {
enable = true;
config = {
bars = [{ fonts = [ "FontAwesome" "Iosevka 11.500000" ]; }];
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."
];
}