mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-08 13:59:24 -06:00
14 lines
271 B
Nix
14 lines
271 B
Nix
|
|
{
|
||
|
|
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;
|
||
|
|
}
|