[OpenRGB] Fix

This commit is contained in:
Tibo De Peuter 2023-10-30 10:30:03 +01:00
parent 0d72ee0c84
commit fb66f46e02
5 changed files with 1121 additions and 12 deletions

View file

@ -26,13 +26,15 @@ in {
enable = (builtins.elem pkgs-unstable.mpv installedPkgs);
source = ../../../stow/mpv/.config/mpv;
};
".ssh/config" = lib.mkIf config.sisyphus.programs.ssh.enable {
source = ../../../stow/ssh/.ssh/config;
".config/OpenRGB" = {
enable = config.sisyphus.services.openrgb.enable;
source = ../../../stow/openrgb/.config/OpenRGB;
recursive = true;
};
".config/vifm" = {
enable = (builtins.elem pkgs.vifm installedPkgs);
source = ../../../stow/vifm/.config/vifm;
recursive = true;
recursive = true; # Fix history and all working
};
".config/zellij" = {
enable = (builtins.elem pkgs.zellij installedPkgs);
@ -47,6 +49,9 @@ in {
enable = (builtins.elem pkgs.zsh installedPkgs);
source = ../../../stow/zsh/.oh-my-zsh/themes/tdpeuter.zsh-theme;
};
".ssh/config" = lib.mkIf config.sisyphus.programs.ssh.enable {
source = ../../../stow/ssh/.ssh/config;
};
".vim" = {
enable = (builtins.elem pkgs.vim installedPkgs);
source = ../../../stow/vim/.vim;