initial commit

This commit is contained in:
Henri Dohmen 2025-03-01 18:19:19 +01:00
commit c4dc2e0f36
25 changed files with 558 additions and 0 deletions

45
mod/shell.nix Normal file
View file

@ -0,0 +1,45 @@
{ pkgs, ... }: {
environment.shells = with pkgs; [
fish
bashInteractive
];
environment.systemPackages = with pkgs; [
wget
htop
bc
gh
gnumake
killall
stow
docker-compose
starship
unzip
];
programs = {
fish.enable = true;
git.enable = true;
tmux = {
enable = true;
clock24 = true;
};
neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
};
};
# --- Excludes ---
programs.nano.enable = false;
# Enabled by fish but takes soooo long.
# This is apparently used by some of fish's
# autocomplete features.
documentation.man.generateCaches = false;
# To stop the annoying error on entering wrong commands
programs.command-not-found.enable = false;
}