mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-07 05:27:13 -06:00
13 lines
271 B
Nix
Executable file
13 lines
271 B
Nix
Executable file
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
home.packages = builtins.attrValues {
|
|
inherit (pkgs)
|
|
rmpc
|
|
;
|
|
};
|
|
xdg.configFile."rmpc/config.ron".source = ./config/config.ron;
|
|
xdg.configFile."rmpc/themes/catppuccin-macchiato.ron".source = ./config/catppuccin-macchiato.ron;
|
|
}
|