dotfiles/homes/x86_64-linux/christopher@cobalt/config/eww.nix
Christopher Mühl d20c9ac3bd
Move eww config
2025-08-04 18:21:31 +02:00

15 lines
187 B
Nix

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