mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
38 lines
745 B
Nix
38 lines
745 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [ ./i3-stubs.nix ];
|
|
|
|
xsession.windowManager.i3 = {
|
|
enable = true;
|
|
|
|
config = {
|
|
bars = [
|
|
{
|
|
fonts = {
|
|
names = [ "FontAwesome" "Iosevka" ];
|
|
size = 11.5;
|
|
};
|
|
}
|
|
{
|
|
fonts = {
|
|
names = [ "FontAwesome" "Iosevka" ];
|
|
style = "Bold Semi-Condensed";
|
|
size = "14px";
|
|
};
|
|
}
|
|
];
|
|
fonts = {
|
|
names = [ "DejaVuSansMono" "Terminus" ];
|
|
style = "Bold Semi-Condensed";
|
|
size = 13.5;
|
|
};
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/i3/config
|
|
assertFileContent home-files/.config/i3/config \
|
|
${./i3-fonts-expected.conf}
|
|
'';
|
|
}
|