From 6439764717b43ef6bf1a81792483c0bf8c32742b Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Wed, 7 Jan 2026 10:22:47 +1000 Subject: [PATCH 1/5] (temp) remove ChameleonUltraGUI+FlipperZero --- hosts/lolcathost/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/lolcathost/default.nix b/hosts/lolcathost/default.nix index dbf965d..72e307a 100755 --- a/hosts/lolcathost/default.nix +++ b/hosts/lolcathost/default.nix @@ -25,8 +25,8 @@ in { ../modules/obsidian.nix ../modules/angryoxide.nix - ../modules/flipperzero.nix - ../modules/chameleonultragui.nix + # ../modules/flipperzero.nix + # ../modules/chameleonultragui.nix ]; nix.settings.experimental-features = [ From 4bc40a1d37b26c074bafe17aed3ee568e5023e63 Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Wed, 7 Jan 2026 10:23:04 +1000 Subject: [PATCH 2/5] i be gaming frfr --- hosts/lolcathost/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/lolcathost/default.nix b/hosts/lolcathost/default.nix index 72e307a..32e9b2f 100755 --- a/hosts/lolcathost/default.nix +++ b/hosts/lolcathost/default.nix @@ -382,6 +382,8 @@ in { # Games prismlauncher # minecraft + pkgs-unstable.olympus # celeste + discord ]; programs = { From 86bdcf2d397ca71c1c8562074c95ec4fd3693147 Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Wed, 7 Jan 2026 10:23:14 +1000 Subject: [PATCH 3/5] is this necessary? --- hosts/lolcathost/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/lolcathost/default.nix b/hosts/lolcathost/default.nix index 32e9b2f..b0f5fe6 100755 --- a/hosts/lolcathost/default.nix +++ b/hosts/lolcathost/default.nix @@ -170,6 +170,7 @@ in { # With backwards compatability for alsa/pulseaudio/jack pipewire = { enable = true; + audio.enable = true; wireplumber.enable = true; alsa.enable = true; From 0c15fb78440b1472f44f619e945375f40a623618 Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Wed, 7 Jan 2026 10:23:30 +1000 Subject: [PATCH 4/5] add hyprpicker + hyprshot to laptop --- hosts/lolcathost/default.nix | 2 ++ hosts/myputer/default.nix | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/hosts/lolcathost/default.nix b/hosts/lolcathost/default.nix index b0f5fe6..93bce3b 100755 --- a/hosts/lolcathost/default.nix +++ b/hosts/lolcathost/default.nix @@ -262,6 +262,8 @@ in { ani-cli bluetui wl-clipboard # clipboard for wayland + hyprpicker # color picker + hyprshot # screenshot utility qbittorrent # torrenting signal-desktop diff --git a/hosts/myputer/default.nix b/hosts/myputer/default.nix index 6986a31..d1999b2 100755 --- a/hosts/myputer/default.nix +++ b/hosts/myputer/default.nix @@ -255,7 +255,7 @@ in { ani-cli bluetui wl-clipboard # clipboard for wayland - hyprpicker + hyprpicker # color picker hyprshot # screenshot utility qbittorrent signal-desktop From 9c5af6a83d28f617ff2bd4e78d7ea362a815fa62 Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Wed, 7 Jan 2026 10:24:49 +1000 Subject: [PATCH 5/5] add more url.insteadOf identifiers for git --- homes/modules/git.nix | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/homes/modules/git.nix b/homes/modules/git.nix index fdf6afb..6751849 100755 --- a/homes/modules/git.nix +++ b/homes/modules/git.nix @@ -27,7 +27,7 @@ defaultBranch = "main"; }; url = { - "https://github.com/" = { + "git@github.com:" = { insteadOf = [ "gh:" "github:" @@ -39,6 +39,24 @@ "gitlab:" ]; }; + "git@github.com:/Agribit/" = { + insteadOf = [ + "agri:" + "Agri:" + "agribit:" + "Agribit:" + ]; + }; + "ssh://forgejo@forge.imbored.dev:2222/" = { + insteadOf = [ + "forge" + ]; + }; + "ssh://forgejo@forge.imbored.dev:2222/emileclarkb/" = { + insteadOf = [ + "cry" + ]; + }; }; };