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

@@ -25,4 +25,4 @@ plugin.setup({
reading_text = "Reading %s", -- Format string rendered when a read-only or unmodifiable file is loaded in the buffer (either string or function(filename: string): string)
workspace_text = "Working on %s", -- Format string rendered when in a git repository (either string or function(project_name: string|nil, filename: string): string)
line_number_text = "Line %s out of %s", -- Format string rendered when `enable_line_number` is set to true (either string or function(line_number: number, line_count: number): string)
})
})

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;
}