nix-config/modules/home/discord/default.nix
2024-01-20 18:08:29 +01:00

15 lines
259 B
Nix

{ pkgs, ... }: {
home.packages = with pkgs; [
dorion
webcord
];
home.file = {
".config/dorion/config.json" = {
source = ./config.json;
};
".config/dorion/themes/rose-pine.css" = {
source = ./rose-pine.css;
};
};
}