16 lines
247 B
Nix
16 lines
247 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
# For Noto Sans NF
|
|
# 25.05
|
|
nerd-fonts.noto
|
|
# 24.11
|
|
# (nerdfonts.override { fonts = [ "NotoSans" ]; })
|
|
];
|
|
|
|
programs.eww = {
|
|
enable = true;
|
|
configDir = ./config;
|
|
};
|
|
}
|