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

16 lines
204 B
Nix

{ pkgs, ... }:
{
home = {
packages = with pkgs; [
# For Noto Sans NF
nerd-fonts.noto
];
file.".config/eww".source = ./config;
};
programs.eww = {
enable = true;
};
}