From f8c3653e4996d0aa19d8c33b6d737c94f051e330 Mon Sep 17 00:00:00 2001 From: Superredstone Date: Tue, 3 Sep 2024 22:50:36 +0200 Subject: [PATCH] Added some programs --- configuration.nix | 10 +++++++++- home.nix | 2 ++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index f2f6403..96562c2 100644 --- a/configuration.nix +++ b/configuration.nix @@ -63,7 +63,6 @@ packages = with pkgs; [ vesktop kitty - firefox heroic ]; }; @@ -90,6 +89,15 @@ wget vulkan-tools fish + gcc + unzip + zip + ripgrep + jq + fzf + gnumake + cmake + zoxide ]; system.stateVersion = "24.05"; # Did you read the comment? diff --git a/home.nix b/home.nix index fb53b7b..b8722db 100644 --- a/home.nix +++ b/home.nix @@ -12,6 +12,7 @@ enable = true; interactiveShellInit = '' set fish_greeting # Disable greeting + alias cd z # Zoxide instead of cd ''; }; programs.kitty = { @@ -25,6 +26,7 @@ enable_audio_bell = false; }; }; + programs.zoxide.enable = true; programs.tmux.enable = true; home.stateVersion = "24.11"; }