[eww] Adds my Eww config

This commit is contained in:
2025-02-16 13:34:14 -08:00
parent cb5c6518f1
commit e642c86e21
16 changed files with 923 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
eww
];
home.file.".config/eww" = {
source = ./config;
recursive = true;
};
}