This commit is contained in:
Nickolaj Jepsen 2024-08-28 16:08:36 +00:00
parent c69ed34507
commit d68c699a7a
18 changed files with 644 additions and 203 deletions

View file

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