cp: follow root nixpkgs to fix copyparty eval error
Some checks failed
Activate Homelab Configuration / rebuild (push) Failing after 17s
Some checks failed
Activate Homelab Configuration / rebuild (push) Failing after 17s
This commit is contained in:
parent
3fc3bdc325
commit
83d1f4086d
3 changed files with 8 additions and 5 deletions
|
|
@ -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 = {
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
@ -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" ];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue