cp: follow root nixpkgs to fix copyparty eval error
Some checks failed
Activate Homelab Configuration / rebuild (push) Failing after 17s

This commit is contained in:
Satria 2026-07-11 22:35:42 +07:00
commit 83d1f4086d
3 changed files with 8 additions and 5 deletions

View file

@ -44,8 +44,8 @@
default_model = { default_model = {
provider = "copilot_chat"; provider = "copilot_chat";
model = "claude-sonnet-5"; model = "claude-sonnet-5";
effort = "high"; effort = "low";
enable_thinking = false; enable_thinking = true;
}; };
}; };
theme = { theme = {

View file

@ -1,8 +1,10 @@
{ pkgs, ctp-opt, ... }: { { lib, pkgs, ctp-opt, ... }: {
catppuccin.cursors.enable = false; # managed manually below to use the "Light" cursor variant
home.pointerCursor = { home.pointerCursor = {
gtk.enable = true; gtk.enable = true;
package = pkgs.catppuccin-cursors."${ctp-opt.flavor}Light"; package = pkgs.catppuccin-cursors."${ctp-opt.flavor}Light";
name = "catppuccin-${ctp-opt.flavor}-light-cursors"; name = lib.mkOverride 30 "catppuccin-${ctp-opt.flavor}-light-cursors";
size = 24; size = 24;
}; };
} }

View file

@ -1,4 +1,4 @@
{ hostname, ... }: { { pkgs, lib, hostname, ... }: {
programs.niri.settings.binds = { programs.niri.settings.binds = {
"XF86AudioRaiseVolume" = { action.spawn = [ "wpctl" "set-volume" "-l" "1" "@DEFAULT_AUDIO_SINK@" "5%+" ]; allow-when-locked = true; }; "XF86AudioRaiseVolume" = { action.spawn = [ "wpctl" "set-volume" "-l" "1" "@DEFAULT_AUDIO_SINK@" "5%+" ]; allow-when-locked = true; };
"XF86AudioLowerVolume" = { action.spawn = [ "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "5%-" ]; allow-when-locked = true; }; "XF86AudioLowerVolume" = { action.spawn = [ "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "5%-" ]; allow-when-locked = true; };
@ -54,6 +54,7 @@
"Mod+V".action.spawn = [ "rofi" "-modi" "clipboard:cliphist-rofi-img" "-show" "clipboard" "-show-icons" ]; "Mod+V".action.spawn = [ "rofi" "-modi" "clipboard:cliphist-rofi-img" "-show" "clipboard" "-show-icons" ];
"Mod+A".action.spawn = [ "zeditor" ]; "Mod+A".action.spawn = [ "zeditor" ];
"Mod+C".action.spawn = [ "kitty" "btop" ]; "Mod+C".action.spawn = [ "kitty" "btop" ];
"Mod+Shift+F".action.spawn-sh = "${lib.getExe pkgs.labwc} $$ WAYLAND_DISPLAY=wayland-1 ${lib.getExe pkgs.kitty}";
"Mod+Shift+C".action.spawn = [ "kitty" "zsh" "-c" "fastfetch; exec zsh -i" ]; "Mod+Shift+C".action.spawn = [ "kitty" "zsh" "-c" "fastfetch; exec zsh -i" ];
"Mod+Shift+D".action.spawn = [ "steam" "-system-composer" "steam://open/bigpicture" ]; "Mod+Shift+D".action.spawn = [ "steam" "-system-composer" "steam://open/bigpicture" ];
"Mod+D".action.spawn = [ "prismlauncher" ]; "Mod+D".action.spawn = [ "prismlauncher" ];