2023-05-13 00:08:12 +02:00
|
|
|
{ ... }:
|
2021-05-04 05:54:35 +02:00
|
|
|
|
|
|
|
{
|
2021-09-26 11:08:45 +02:00
|
|
|
imports = [ ./i3-stubs.nix ];
|
2021-05-04 05:54:35 +02:00
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
xsession.windowManager.i3 = {
|
|
|
|
enable = true;
|
2021-05-04 05:54:35 +02:00
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
config = {
|
2024-08-20 01:58:10 +02:00
|
|
|
bars = [
|
|
|
|
{ fonts = [ "FontAwesome" "Iosevka 11.500000" ]; }
|
|
|
|
{ fonts = [ "FontAwesome" "Iosevka Bold Semi-Condensed 14px" ]; }
|
|
|
|
];
|
2021-09-26 11:08:45 +02:00
|
|
|
fonts = [ "DejaVuSansMono" "Terminus Bold Semi-Condensed 13.500000" ];
|
|
|
|
};
|
|
|
|
};
|
2021-05-04 05:54:35 +02:00
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.config/i3/config
|
|
|
|
assertFileContent home-files/.config/i3/config \
|
|
|
|
${./i3-fonts-expected.conf}
|
|
|
|
'';
|
2021-05-04 05:54:35 +02:00
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
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."
|
2024-08-20 01:58:10 +02:00
|
|
|
"Specifying i3.config.bars[].fonts as a list is deprecated. Use the attrset version instead."
|
2021-09-26 11:08:45 +02:00
|
|
|
];
|
2021-05-04 05:54:35 +02:00
|
|
|
}
|