- `foot` fonts and background color - `helix` editor - `pass` related aliases in shell - `nix-index` automatic update - `sway`/`waybar` changes - new `beebox` host - `kodi` module - `coredns` for `hs`
10 lines
340 B
Nix
10 lines
340 B
Nix
{pkgs, ...}: {
|
|
fonts = {
|
|
fonts = with pkgs; [powerline-fonts dejavu_fonts fira-code fira-code-symbols emacs-all-the-icons-fonts nerdfonts joypixels];
|
|
fontconfig.defaultFonts = {
|
|
monospace = ["DejaVu Sans Mono for Powerline"];
|
|
sansSerif = ["DejaVu Sans"];
|
|
};
|
|
};
|
|
nixpkgs.config.joypixels.acceptLicense = true;
|
|
}
|