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 ];
|
|
|
|
|
|
|
|
xsession.windowManager.i3 = {
|
|
|
|
enable = true;
|
2021-05-04 05:54:35 +02:00
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
config = {
|
|
|
|
bars = [{
|
2021-05-04 05:54:35 +02:00
|
|
|
fonts = {
|
2021-09-26 11:08:45 +02:00
|
|
|
names = [ "FontAwesome" "Iosevka" ];
|
|
|
|
size = 11.5;
|
2021-05-04 05:54:35 +02:00
|
|
|
};
|
2021-09-26 11:08:45 +02:00
|
|
|
}];
|
|
|
|
fonts = {
|
|
|
|
names = [ "DejaVuSansMono" "Terminus" ];
|
|
|
|
style = "Bold Semi-Condensed";
|
|
|
|
size = 13.5;
|
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
|
|
|
}
|