From 03e20d83e1be92fca6618a1d41313b3580d39ca1 Mon Sep 17 00:00:00 2001 From: Daniel Lundin <dln@arity.se> Date: Thu, 9 Jan 2025 14:35:34 +0100 Subject: [PATCH 1/4] nemo: disable sunshine --- hosts/nemo/default.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/hosts/nemo/default.nix b/hosts/nemo/default.nix index be2b346..49cdaf0 100644 --- a/hosts/nemo/default.nix +++ b/hosts/nemo/default.nix @@ -158,12 +158,6 @@ }; }; - services.sunshine = { - enable = true; - openFirewall = true; - settings = { }; - }; - patagia = { desktop.enable = true; plymouth.enable = true; From 3ec86e59ba79852a0e7ce99f78e8178269af7022 Mon Sep 17 00:00:00 2001 From: Daniel Lundin <dln@arity.se> Date: Thu, 9 Jan 2025 14:35:34 +0100 Subject: [PATCH 2/4] nemo: disable coolercontrol + gnome vitals --- home/common/gnome.nix | 6 ------ hosts/nemo/default.nix | 2 -- 2 files changed, 8 deletions(-) diff --git a/home/common/gnome.nix b/home/common/gnome.nix index de67eb7..75343f5 100644 --- a/home/common/gnome.nix +++ b/home/common/gnome.nix @@ -13,7 +13,6 @@ with lib.hm.gvariant; gnomeExtensions.desktop-clock gnomeExtensions.emoji-copy gnomeExtensions.just-perfection - gnomeExtensions.vitals ]; dconf.settings = { @@ -168,7 +167,6 @@ with lib.hm.gvariant; enabled-extensions = [ "emoji-copy@felipeftn" "just-perfection-desktop@just-perfection" - "Vitals@CoreCoding.com" ]; }; @@ -187,10 +185,6 @@ with lib.hm.gvariant; top-panel-position = 0; }; - "org/gnome/shell/extensions/vitals" = { - update-time = 15; - }; - "org/gnome/tweaks" = { show-extensions-notice = false; }; diff --git a/hosts/nemo/default.nix b/hosts/nemo/default.nix index 49cdaf0..cc1db74 100644 --- a/hosts/nemo/default.nix +++ b/hosts/nemo/default.nix @@ -177,8 +177,6 @@ OTEL_EXPORTER_OTLP_ENDPOINT = "https://otel.aarn.patagia.net"; }; - programs.coolercontrol.enable = true; - users.users.dln = { isNormalUser = true; description = "Daniel Lundin"; From c68bdd38183701f7a81851587711785b8a89ca87 Mon Sep 17 00:00:00 2001 From: Daniel Lundin <dln@arity.se> Date: Thu, 9 Jan 2025 14:52:31 +0100 Subject: [PATCH 3/4] nvim: blink-cmp changes --- home/common/nvim/blink-cmp.lua | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/home/common/nvim/blink-cmp.lua b/home/common/nvim/blink-cmp.lua index b34b6fc..b59fe58 100644 --- a/home/common/nvim/blink-cmp.lua +++ b/home/common/nvim/blink-cmp.lua @@ -1,6 +1,7 @@ require 'blink-cmp'.setup({ keymap = { preset = 'enter', + -- preset = 'super-tab', ["<PageDown>"] = { "scroll_documentation_down" }, ["<PageUp>"] = { "scroll_documentation_up" }, }, @@ -18,11 +19,11 @@ require 'blink-cmp'.setup({ ghost_text = { enabled = true }, list = { - selection = "manual", + selection = { preselect = false, auto_insert = false }, }, menu = { - auto_show = true, + auto_show = false, }, }, @@ -32,10 +33,6 @@ require 'blink-cmp'.setup({ }, }, - keymap = { - preset = 'super-tab', - }, - signature = { enabled = true, window = { border = 'rounded', }, From f263c95f039cd2425c2938db351c31ad64022243 Mon Sep 17 00:00:00 2001 From: Daniel Lundin <dln@arity.se> Date: Thu, 9 Jan 2025 14:52:31 +0100 Subject: [PATCH 4/4] ghostty: don't start nvim automatically --- home/common/ghostty.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/home/common/ghostty.nix b/home/common/ghostty.nix index 3a2f55e..a05ca7f 100644 --- a/home/common/ghostty.nix +++ b/home/common/ghostty.nix @@ -29,7 +29,6 @@ unfocused-split-opacity = 1.0; shell-integration = "fish"; - initial-command = "nvim-remote"; window-decoration = true; gtk-single-instance = true; @@ -129,7 +128,7 @@ "TerminalEmulator" ]; exec = '' - ghostty --class=com.mitchellh.ghostty-devel --command="ssh -t devel" --initial-command="ssh -t devel nvim-remote" + ghostty --class=com.mitchellh.ghostty-devel --command="ssh -t devel" --initial-command="ssh -t devel" ''; genericName = "Ghostty (devel)"; icon = "com.mitchellh.ghostty";