chore: updated or removed deprecated shit

This commit is contained in:
Nick 2025-11-01 03:22:53 -05:00
parent 907d72e1fb
commit 66535f0abd
4 changed files with 14 additions and 27 deletions

View file

@ -1,24 +1,27 @@
{ {
flake, flake,
pkgs,
... ...
}: }:
{ {
home.packages = builtins.attrValues {
inherit (pkgs)
zoom-us
;
};
imports = [ imports = [
flake.inputs.nixcord.homeModules.nixcord flake.inputs.nixcord.homeModules.nixcord
]; ];
programs.nixcord = { programs.nixcord = {
enable = true; enable = false;
discord.vencord = { discord.vencord = {
unstable = true; unstable = false;
}; };
vesktop = { vesktop = {
enable = true; enable = false;
autoscroll.enable = true; autoscroll.enable = true;
}; };
dorion = {
enable = true;
trayIconEnabled = false;
};
config = config =
let let
themeFile = "catppuccin-macchiato.theme.css"; themeFile = "catppuccin-macchiato.theme.css";
@ -53,21 +56,5 @@
}; };
}; };
}; };
dorion = {
theme = "dark";
zoom = "1.0";
blur = "acrylic";
sysTray = false;
openOnStartup = true;
autoClearCache = true;
disableHardwareAccel = false;
rpcServer = true;
rpcProcessScanner = true;
pushToTalk = false;
desktopNotifications = true;
unreadBadge = true;
};
extraConfig = {
};
}; };
} }

View file

@ -5,7 +5,7 @@
{ {
home.packages = builtins.attrValues { home.packages = builtins.attrValues {
inherit (pkgs) inherit (pkgs)
bitwarden bitwarden-desktop
; ;
}; };
} }

View file

@ -36,7 +36,7 @@ let
"V, exec, ${lib.getExe pkgs.vesktop}" "V, exec, ${lib.getExe pkgs.vesktop}"
"M, exec, ${lib.getExe pkgs.element-desktop}" "M, exec, ${lib.getExe pkgs.element-desktop}"
"D, exec, ${lib.getExe pkgs.ghostty}" "D, exec, ${lib.getExe pkgs.ghostty}"
"P, exec, ${lib.getExe pkgs.bitwarden}" "P, exec, ${lib.getExe pkgs.bitwarden-desktop}"
"F, exec, ${lib.getExe pkgs.ghostty} -e ${lib.getExe pkgs.zellij} a dotfiles" "F, exec, ${lib.getExe pkgs.ghostty} -e ${lib.getExe pkgs.zellij} a dotfiles"
"R, exec, ${lib.getExe pkgs.ghostty} -e ${lib.getExe pkgs.yazi}" "R, exec, ${lib.getExe pkgs.ghostty} -e ${lib.getExe pkgs.yazi}"
# Workspaces # Workspaces

View file

@ -36,7 +36,7 @@ in
general.askForConfirmationOnLogout = false; general.askForConfirmationOnLogout = false;
sessionRestore = { sessionRestore = {
excludeApplications = [ excludeApplications = [
(lib.getExe pkgs.bitwarden) (lib.getExe pkgs.bitwarden-desktop)
]; ];
}; };
}; };
@ -120,7 +120,7 @@ in
"launch-bitwarden" = { "launch-bitwarden" = {
name = "Launch Bitwarden"; name = "Launch Bitwarden";
key = "Meta+P"; key = "Meta+P";
command = lib.getExe pkgs.bitwarden; command = lib.getExe pkgs.bitwarden-desktop;
}; };
"launch-dotfiles" = { "launch-dotfiles" = {
name = "Launch Dotfiles in Zellij"; name = "Launch Dotfiles in Zellij";