added arRPC

This commit is contained in:
2023-10-20 11:51:30 +02:00
parent 6e344e87e5
commit bea59d896f
4 changed files with 57 additions and 13 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, lib, ... }:
{ pkgs, inputs, lib, ... }:
let
catppuccin-mocha = pkgs.fetchFromGitHub {
owner = "catppuccin";
@@ -9,6 +9,7 @@ let
in {
home.packages = with pkgs; [
(webcord-vencord.override { webcord = webcord.override { electron_25 = electron_24;};})
inputs.arrpc.packages.${pkgs.system}.arrpc
];
xdg.configFile = {
@@ -16,4 +17,11 @@ in {
source = "${catppuccin-mocha}/themes/mocha.theme.css";
};
};
imports = [
inputs.arrpc.homeManagerModules.default
];
services.arrpc.enable = true;
}