From 9abf353f88684af5acd3375acfb1ac02273c8a5a Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Mon, 18 Nov 2024 19:58:32 +0000 Subject: [PATCH] fix(nix): update stateVersion and remove adb plugin - Updated `stateVersion` to "24.11" - Removed `adb` from the list of oh-my-zsh plugins in `zsh.nix` --- roles/home/common.nix | 2 +- roles/home/zsh.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/home/common.nix b/roles/home/common.nix index 0ca0411..8287e5c 100644 --- a/roles/home/common.nix +++ b/roles/home/common.nix @@ -23,6 +23,6 @@ ] ++ lib.optional (!pkgs.stdenv.isDarwin) pastebinit; - stateVersion = "24.05"; + stateVersion = "24.11"; }; } diff --git a/roles/home/zsh.nix b/roles/home/zsh.nix index 67f0596..664bab7 100644 --- a/roles/home/zsh.nix +++ b/roles/home/zsh.nix @@ -11,7 +11,7 @@ in oh-my-zsh = { enable = true; - plugins = [ "git" "sudo" "docker" "docker-compose" "adb" "systemd" ]; + plugins = [ "git" "sudo" "docker" "docker-compose" "systemd" ]; theme = "bira"; }; autosuggestion.enable = false;