mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
15 lines
181 B
Nix
15 lines
181 B
Nix
|
|
{
|
||
|
|
pkgs,
|
||
|
|
config,
|
||
|
|
...
|
||
|
|
}: {
|
||
|
|
home.file."${config.xdg.configHome}/eww" = {
|
||
|
|
source = ./config;
|
||
|
|
recursive = true;
|
||
|
|
};
|
||
|
|
|
||
|
|
home.packages = with pkgs; [
|
||
|
|
socat
|
||
|
|
eww
|
||
|
|
];
|
||
|
|
}
|