mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
29 lines
852 B
Nix
29 lines
852 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."
|
|
];
|
|
}
|