Files
system-config/home-manager/features/eww/default.nix

13 lines
162 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
# For Noto Sans NF
nerdfonts
];
programs.eww = {
enable = true;
configDir = ./config;
};
}