dotfiles/home-manager/modules/vesktop/default.nix

17 lines
252 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{pkgs, ...}: {
home.packages = builtins.attrValues {
inherit
(pkgs)
vesktop
;
};
2024-10-11 15:20:01 -05:00
home = {
file = {
"./.config/vesktop/themes/macchiato-theme.css" = {
source = ./macchiato-theme.css;
};
};
};
2024-10-06 15:25:05 -05:00
}