dotfiles/home-manager/modules/vesktop/default.nix
2024-10-11 15:20:01 -05:00

16 lines
252 B
Nix
Executable file

{pkgs, ...}: {
home.packages = builtins.attrValues {
inherit
(pkgs)
vesktop
;
};
home = {
file = {
"./.config/vesktop/themes/macchiato-theme.css" = {
source = ./macchiato-theme.css;
};
};
};
}