Files
system-config/home-manager/apps/eww/default.nix
2025-02-16 13:34:14 -08:00

12 lines
144 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
eww
];
home.file.".config/eww" = {
source = ./config;
recursive = true;
};
}