alacritty: Fixed font config
This commit is contained in:
parent
479bb8028a
commit
81ad140e73
4 changed files with 30 additions and 0 deletions
7
bar/default.nix
Normal file
7
bar/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./eww
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
|
15
bar/eww/default.nix
Normal file
15
bar/eww/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
} : {
|
||||||
|
home.file = {
|
||||||
|
".config/eww".source = .;
|
||||||
|
};
|
||||||
|
|
||||||
|
home.packages = [
|
||||||
|
pkgs.eww
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -12,4 +12,9 @@
|
||||||
extraConfig = builtins.readFile ./hyprland.conf;
|
extraConfig = builtins.readFile ./hyprland.conf;
|
||||||
plugins = [ hy3.packages.${pkgs.system}.hy3 ];
|
plugins = [ hy3.packages.${pkgs.system}.hy3 ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# bar is required
|
||||||
|
imports = {
|
||||||
|
../../bar
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
} : {
|
} : {
|
||||||
|
@ -10,6 +11,8 @@
|
||||||
pkgs.alacritty
|
pkgs.alacritty
|
||||||
pkgs.fira-code-nerdfont
|
pkgs.fira-code-nerdfont
|
||||||
];
|
];
|
||||||
|
|
||||||
|
fonts.fontconfig.enable = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue