Added some programs

This commit is contained in:
2024-09-03 22:50:36 +02:00
parent 953706e22c
commit f8c3653e49
2 changed files with 11 additions and 1 deletions

View File

@@ -63,7 +63,6 @@
packages = with pkgs; [ packages = with pkgs; [
vesktop vesktop
kitty kitty
firefox
heroic heroic
]; ];
}; };
@@ -90,6 +89,15 @@
wget wget
vulkan-tools vulkan-tools
fish fish
gcc
unzip
zip
ripgrep
jq
fzf
gnumake
cmake
zoxide
]; ];
system.stateVersion = "24.05"; # Did you read the comment? system.stateVersion = "24.05"; # Did you read the comment?

View File

@@ -12,6 +12,7 @@
enable = true; enable = true;
interactiveShellInit = '' interactiveShellInit = ''
set fish_greeting # Disable greeting set fish_greeting # Disable greeting
alias cd z # Zoxide instead of cd
''; '';
}; };
programs.kitty = { programs.kitty = {
@@ -25,6 +26,7 @@
enable_audio_bell = false; enable_audio_bell = false;
}; };
}; };
programs.zoxide.enable = true;
programs.tmux.enable = true; programs.tmux.enable = true;
home.stateVersion = "24.11"; home.stateVersion = "24.11";
} }