specialize

This commit is contained in:
2025-09-01 17:45:31 -05:00
parent cbd4b177ba
commit f7c4059445
2 changed files with 16 additions and 3 deletions

View File

@@ -37,8 +37,7 @@
}; };
extraConfig = (if config.homeconfig.host == "laptop" then '' extraConfig = (if config.homeconfig.host == "laptop" then ''
monitor=eDP-1,1920x1080@300,0x0,1 bind = CTRL SHIFT, XF86Launch2, exec, if [[ $(hyprctl monitors | grep 0x0 | sed -n -e "s/\t*1920x1080@//" -e "s/.[1234567890]* at 0x0//p") == 300 ]]; then /run/current-system/bin/switch-to-configuration switch; else /run/current-system/specialisation/docked/bin/switch-to-configuration switch; fi
bind = CTRL SHIFT, XF86Launch2, exec, if [[ $(hyprctl monitors | grep 0x0 | sed -n -e "s/\t*1920x1080@//" -e "s/.[1234567890]* at 0x0//p") == 300 ]]; then hyprctl keyword monitor eDP-1,1920x1080@60,0x0,1; else hyprctl keyword monitor eDP-1,1920x1080@300,0x0,1; fi
'' else if config.homeconfig.host == "homebox" then '' '' else if config.homeconfig.host == "homebox" then ''
monitor=HDMI-A-2,1920x1080@60,0x0,1 monitor=HDMI-A-2,1920x1080@60,0x0,1
monitor=HEADLESS-2,1920x1080@60,0x0,1 monitor=HEADLESS-2,1920x1080@60,0x0,1

View File

@@ -34,6 +34,20 @@
systemd.extraConfig = "DefaultLimitNOFILE=2048"; systemd.extraConfig = "DefaultLimitNOFILE=2048";
specialisation = {
docked.configuration = {
hardware.nvidia.prime.sync.enable = true;
home-manager.users.nathan.wayland.windowManager.hyprland.extraConfig = ''
monitor=eDP-1,1920x1080@300,0x0,1
'';
};
};
home-manager.users.nathan.wayland.windowManager.hyprland.extraConfig = lib.mkIf (config.specialisation != {}) ''
monitor=eDP-1,1920x1080@60,0x0,1
'';
hardware = { hardware = {
graphics.enable = true; graphics.enable = true;
@@ -56,7 +70,7 @@
# WARNING: sync and offload are mutually exclusive. # WARNING: sync and offload are mutually exclusive.
# You can only pick one!! # You can only pick one!!
#sync.enable = true; #sync.enable = true;
offload = { offload = lib.mkIf (config.specialisation != {}) {
enable = true; enable = true;
enableOffloadCmd = true; enableOffloadCmd = true;
}; };