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