feat: qbit settings

This commit is contained in:
s-prechtl 2025-05-11 22:16:21 +02:00
parent fb139f171e
commit 842094689b
4 changed files with 30 additions and 8 deletions

View file

@ -124,12 +124,30 @@ in {
serverConfig = { serverConfig = {
LegalNotice.Accepted = true; LegalNotice.Accepted = true;
General.Locale = "en";
Preferences = { Preferences = {
WebUI = { WebUI = {
Username = "Spr3eZ"; Username = "Spr3eZ";
Password_PBKDF2 = "@ByteArray(rSRSjyLjKHX4KeDHgtx8qA==:EdZC27+FdG0aFtqVtEsiuqQAA6NROdBRXVSySD6ktgBY7k9ORrq8Kgo2uIkXvAWssmMIFb+C3RZS2PMWAt/Ihw==)"; Password_PBKDF2 = "@ByteArray(rSRSjyLjKHX4KeDHgtx8qA==:EdZC27+FdG0aFtqVtEsiuqQAA6NROdBRXVSySD6ktgBY7k9ORrq8Kgo2uIkXvAWssmMIFb+C3RZS2PMWAt/Ihw==)";
}; };
General.Locale = "en";
AutoRun = {
OnTorrentAdded.Enabled = true;
OnTorrentAdded.Program = ''chmod -R 777 "%F/'';
enabled = true;
program = ''chmod -R 777 "%F/'';
};
BitTorrent = {
Session.AddTorrentStopped = false;
Session.AlternativeGlobalDLSpeedLimit = 100000;
Session.AlternativeGlobalUPSpeedLimit = 1000;
Session.BandwidthSchedulerEnabled = true;
Session.ExcludedFileNames = "";
Session.GlobalMaxInactiveSeedingMinutes = 1440;
Session.GlobalMaxRatio = 2;
Session.GlobalMaxSeedingMinutes = 1440;
};
}; };
}; };
}; };

View file

@ -1,4 +1,4 @@
{...}: { {pkgs, ...}: {
imports = [ imports = [
./hyprpaper.nix ./hyprpaper.nix
./hypridle.nix ./hypridle.nix
@ -19,8 +19,9 @@
"SUPERCTRLALTSHIFT, L, exec, brave https://linkedin.com" "SUPERCTRLALTSHIFT, L, exec, brave https://linkedin.com"
"$mod, return, exec, alacritty" "$mod, return, exec, alacritty"
"$mod,E,exec,nautilus" "$mod,E,exec,nautilus"
"$mod,D,exec,killall -q wofi; wofi --show drun -I" "$mod,D,exec,killall -q rofi; rofi -show drun -p 'Search...' | xargs -I{} xdg-open https://duckduckgo.com/?q={}"
"$mod, P,exec,wofi-pass -c" "$mod,Period,exec,killall -q rofi; rofi -show emoji"
"$mod, P,exec,rofi-pass"
"$mod SHIFT,R,exec,hyprctl reload" "$mod SHIFT,R,exec,hyprctl reload"
"$mod,space,togglefloating," "$mod,space,togglefloating,"
"ALTSHIFT, L, exec, hyprlock" "ALTSHIFT, L, exec, hyprlock"
@ -33,7 +34,6 @@
"$mod ALTSHIFT, P, exec, hyprshot -z -m window -o ~/Screenshot" "$mod ALTSHIFT, P, exec, hyprshot -z -m window -o ~/Screenshot"
"$mod SHIFT, N, exec, dunstctl history-pop" "$mod SHIFT, N, exec, dunstctl history-pop"
"$mod ALTSHIFT, N, exec, dunstctl close-all" "$mod ALTSHIFT, N, exec, dunstctl close-all"
"$mod,left,movefocus,l" "$mod,left,movefocus,l"
"$mod, H,movefocus,l" "$mod, H,movefocus,l"
"$mod ALT, left, movewindow, l" "$mod ALT, left, movewindow, l"

View file

@ -0,0 +1,3 @@
{pkgs, ...}: {
qt.platformTheme = "gnome";
}

View file

@ -9,15 +9,16 @@
enable = true; enable = true;
package = pkgs.rofi-pass-wayland; package = pkgs.rofi-pass-wayland;
extraConfig = '' extraConfig = ''
URL_field='url' URL_field='url'
USERNAME_field='user' USERNAME_field='user'
''; '';
}; };
plugins = [ plugins = [
pkgs.rofi-emoji-wayland pkgs.rofi-emoji-wayland
]; ];
extraConfig = { extraConfig = {
modi = "drun,emoji"; modi = "drun,emoji";
show-icons = true;
}; };
}; };
} }