From ba13cb569d93638e80d06b52ea2433cb11cf15c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Tue, 20 Jan 2026 13:45:01 -0300 Subject: [PATCH 1/6] gitlab: update concurrent count --- hosts/stonehenge/gitlab-runner.nix | 2 +- system/monolith-gitlab-runner.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/stonehenge/gitlab-runner.nix b/hosts/stonehenge/gitlab-runner.nix index 65498fc..580c61e 100644 --- a/hosts/stonehenge/gitlab-runner.nix +++ b/hosts/stonehenge/gitlab-runner.nix @@ -11,7 +11,7 @@ in virtualisation.docker.enable = true; services.gitlab-runner = { enable = true; - settings.concurrent = 4; + settings.concurrent = 2; services = { wopus-gitlab-nix = mkNixRunnerFull { authenticationTokenConfigFile = config.sops.secrets."gitlab-runners/wopus-gitlab-nix".path; diff --git a/system/monolith-gitlab-runner.nix b/system/monolith-gitlab-runner.nix index 44de030..e70fd8c 100644 --- a/system/monolith-gitlab-runner.nix +++ b/system/monolith-gitlab-runner.nix @@ -12,7 +12,7 @@ in virtualisation.docker.enable = true; services.gitlab-runner = { enable = true; - settings.concurrent = 6; + settings.concurrent = 3; services = { # runner for building in docker via host's nix-daemon # nix store will be readable in runner, might be insecure From dc8e14d4b48c7e00ddcb271d6fb4104ad1ef42ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Tue, 20 Jan 2026 13:45:17 -0300 Subject: [PATCH 2/6] chat: fix telegram autostart --- user/chat.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user/chat.nix b/user/chat.nix index a001b2b..bef42d7 100644 --- a/user/chat.nix +++ b/user/chat.nix @@ -10,7 +10,7 @@ extraConfig = '' exec thunderbird exec discordcanary - exec telegram-desktop + exec Telegram ''; }; From f697e9e91df814a708cae331c85ce73a65eb40ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Tue, 20 Jan 2026 13:45:35 -0300 Subject: [PATCH 3/6] kakoune: fix git diff for COMMIT_EDITMSG --- user/kakoune/hooks.kak | 1 + 1 file changed, 1 insertion(+) diff --git a/user/kakoune/hooks.kak b/user/kakoune/hooks.kak index 79d85cc..5bc243e 100644 --- a/user/kakoune/hooks.kak +++ b/user/kakoune/hooks.kak @@ -15,6 +15,7 @@ hook global NormalIdle .* %{ evaluate-commands %sh{ define-command -hidden -override git-try-show-diff %{ evaluate-commands -draft %sh{ test -f "$kak_buffile" || exit 0 + echo "$kak_buffile" | grep '/\.git/' > /dev/null && exit 0 cd $(dirname "$kak_buffile") git rev-parse --git-dir > /dev/null && echo "git show-diff" From 7bd66d8aa1da9f64289dce3b0d9a5e6d547d8a89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Tue, 20 Jan 2026 13:46:09 -0300 Subject: [PATCH 4/6] style: format --- user/alacritty.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user/alacritty.nix b/user/alacritty.nix index eaaa414..d478485 100644 --- a/user/alacritty.nix +++ b/user/alacritty.nix @@ -61,7 +61,7 @@ in delimiters = ''^\\u0000-\\u001F\\u007F-\\u009F<>"\\s{-}\\^⟨⟩`''; # Kakoune uses these characters to represent whitespace, # but alacritty doesn't know about them - whitespace_characters = ''¬·→''; + whitespace_characters = "¬·→"; in "${mimes}[${delimiters}${whitespace_characters}]+"; command = "xdg-open"; From 77031085f0aa6b0cc945190ff711596ba306adad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Tue, 20 Jan 2026 13:46:43 -0300 Subject: [PATCH 5/6] gpu: update config --- hosts/monolith/amdgpu.nix | 12 ++++++------ user/mangohud.nix | 7 ++++--- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/hosts/monolith/amdgpu.nix b/hosts/monolith/amdgpu.nix index 7c34343..3a9785b 100644 --- a/hosts/monolith/amdgpu.nix +++ b/hosts/monolith/amdgpu.nix @@ -5,12 +5,12 @@ "video=DP-1:1920x1080@144" ]; - hardware.amdgpu = { - overdrive = { - enable = true; - ppfeaturemask = "0xffffffff"; - }; - }; + # hardware.amdgpu = { + # overdrive = { + # enable = true; + # ppfeaturemask = "0xffffffff"; + # }; + # }; hardware.graphics.enable32Bit = true; diff --git a/user/mangohud.nix b/user/mangohud.nix index 6994bcb..7caba3c 100644 --- a/user/mangohud.nix +++ b/user/mangohud.nix @@ -21,7 +21,7 @@ let gpu_load_value = "50,90"; gpu_load_color = "FFFFFF,FFAA7F,CC0000"; gpu_voltage = true; - throttling_status = true; + # throttling_status = true; gpu_core_clock = true; gpu_mem_clock = true; gpu_temp = true; @@ -29,6 +29,7 @@ let gpu_junction_temp = true; gpu_fan = true; gpu_power = true; + gpu_power_limit = true; # CPU cpu_text = "R7 8700G"; @@ -57,9 +58,9 @@ let fps_metrics = "avg,0.01"; frame_timing = true; frametime_color = "FFFFFF"; - throttling_status_graph = true; + # throttling_status_graph = true; show_fps_limit = true; - fps_limit = "240,144,120,90,60,30,0"; + fps_limit = "288,0,30,60,75,90,120,144"; # Extra resolution = true; From 2145275e2b76047ffac1fb3f3bc0caf971b4d345 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Tue, 20 Jan 2026 13:46:52 -0300 Subject: [PATCH 6/6] update --- flake.lock | 60 +++++++++++++++++++++++++++--------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/flake.lock b/flake.lock index bad48e1..52f5555 100644 --- a/flake.lock +++ b/flake.lock @@ -225,11 +225,11 @@ ] }, "locked": { - "lastModified": 1764350888, - "narHash": "sha256-6Rp18zavTlnlZzcoLoBTJMBahL2FycVkw2rAEs3cQvo=", + "lastModified": 1766150702, + "narHash": "sha256-P0kM+5o+DKnB6raXgFEk3azw8Wqg5FL6wyl9jD+G5a4=", "owner": "nix-community", "repo": "disko", - "rev": "2055a08fd0e2fd41318279a5355eb8a161accf26", + "rev": "916506443ecd0d0b4a0f4cf9d40a3c22ce39b378", "type": "github" }, "original": { @@ -243,11 +243,11 @@ "nixpkgs": "nixpkgs_3" }, "locked": { - "lastModified": 1749410315, - "narHash": "sha256-5H8MuMMSq1WnQcvb1FiDNkKP+uyeZ8HX5GRTMfEOyLI=", + "lastModified": 1764972059, + "narHash": "sha256-MLdmXiPhouR4nSxIZwNEHWGYT2rR9UquaYGbZPEBgRk=", "owner": "lelgenio", "repo": "dzgui-nix", - "rev": "49adbb1edfb3c25b0cd8256d35673394386065e7", + "rev": "14bd77c58f4cc4864513f9d887ad387337c9411f", "type": "github" }, "original": { @@ -504,11 +504,11 @@ ] }, "locked": { - "lastModified": 1767280655, - "narHash": "sha256-YmaYMduV5ko8zURUT1VLGDbVC1L/bxHS0NsiPoZ6bBM=", + "lastModified": 1768603898, + "narHash": "sha256-vRV1dWJOCpCal3PRr86wE2WTOMfAhTu6G7bSvOsryUo=", "owner": "nix-community", "repo": "home-manager", - "rev": "d49d2543f02dbd789ed032188c84570d929223cb", + "rev": "2a63d0e9d2c72ac4d4150ebb242cf8d86f488c8c", "type": "github" }, "original": { @@ -565,11 +565,11 @@ ] }, "locked": { - "lastModified": 1763870992, - "narHash": "sha256-NPyc76Wxmv/vAsXJ8F+/8fXECHYcv2YGSqdiSHp/F/A=", + "lastModified": 1765267181, + "narHash": "sha256-d3NBA9zEtBu2JFMnTBqWj7Tmi7R5OikoU2ycrdhQEws=", "owner": "Mic92", "repo": "nix-index-database", - "rev": "d7423982c7a26586aa237d130b14c8b302c7a367", + "rev": "82befcf7dc77c909b0f2a09f5da910ec95c5b78f", "type": "github" }, "original": { @@ -620,11 +620,11 @@ }, "nixpkgs-unstable": { "locked": { - "lastModified": 1764242076, - "narHash": "sha256-sKoIWfnijJ0+9e4wRvIgm/HgE27bzwQxcEmo2J/gNpI=", + "lastModified": 1768564909, + "narHash": "sha256-Kell/SpJYVkHWMvnhqJz/8DqQg2b6PguxVWOuadbHCc=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "2fad6eac6077f03fe109c4d4eb171cf96791faa4", + "rev": "e4bae1bd10c9c57b2cf517953ab70060a828ee6f", "type": "github" }, "original": { @@ -681,11 +681,11 @@ }, "nixpkgs_5": { "locked": { - "lastModified": 1767047869, - "narHash": "sha256-tzYsEzXEVa7op1LTnrLSiPGrcCY6948iD0EcNLWcmzo=", + "lastModified": 1768621446, + "narHash": "sha256-6YwHV1cjv6arXdF/PQc365h1j+Qje3Pydk501Rm4Q+4=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "89dbf01df72eb5ebe3b24a86334b12c27d68016a", + "rev": "72ac591e737060deab2b86d6952babd1f896d7c5", "type": "github" }, "original": { @@ -696,11 +696,11 @@ }, "nixpkgs_6": { "locked": { - "lastModified": 1761236834, - "narHash": "sha256-+pthv6hrL5VLW2UqPdISGuLiUZ6SnAXdd2DdUE+fV2Q=", + "lastModified": 1767364772, + "narHash": "sha256-fFUnEYMla8b7UKjijLnMe+oVFOz6HjijGGNS1l7dYaQ=", "owner": "nixos", "repo": "nixpkgs", - "rev": "d5faa84122bc0a1fd5d378492efce4e289f8eac1", + "rev": "16c7794d0a28b5a37904d55bcca36003b9109aaa", "type": "github" }, "original": { @@ -854,11 +854,11 @@ ] }, "locked": { - "lastModified": 1764021963, - "narHash": "sha256-1m84V2ROwNEbqeS9t37/mkry23GBhfMt8qb6aHHmjuc=", + "lastModified": 1768481291, + "narHash": "sha256-NjKtkJraCZEnLHAJxLTI+BfdU//9coAz9p5TqveZwPU=", "owner": "Mic92", "repo": "sops-nix", - "rev": "c482a1c1bbe030be6688ed7dc84f7213f304f1ec", + "rev": "e085e303dfcce21adcb5fec535d65aacb066f101", "type": "github" }, "original": { @@ -1014,11 +1014,11 @@ "nixpkgs": "nixpkgs_6" }, "locked": { - "lastModified": 1762938485, - "narHash": "sha256-AlEObg0syDl+Spi4LsZIBrjw+snSVU4T8MOeuZJUJjM=", + "lastModified": 1768158989, + "narHash": "sha256-67vyT1+xClLldnumAzCTBvU0jLZ1YBcf4vANRWP3+Ak=", "owner": "numtide", "repo": "treefmt-nix", - "rev": "5b4ee75aeefd1e2d5a1cc43cf6ba65eba75e83e4", + "rev": "e96d59dff5c0d7fddb9d113ba108f03c3ef99eca", "type": "github" }, "original": { @@ -1029,11 +1029,11 @@ }, "vpsadminos": { "locked": { - "lastModified": 1764110872, - "narHash": "sha256-uZhVLzNVXEEztyG5okuH8DVbWYVPDGSiAapRmerueZY=", + "lastModified": 1767796149, + "narHash": "sha256-yGpWUuiHyCH18s8cYfLp8d98dqPy/BkAcw/KdtjclUs=", "owner": "vpsfreecz", "repo": "vpsadminos", - "rev": "f6919d00dfd15faec276d6a0ac95668b2c1e3a28", + "rev": "861043cfdbc47d41618d4fe496f0208f7cb4ab5d", "type": "github" }, "original": {