nix-config/modules/shell.nix

107 lines
1.5 KiB
Nix
Raw Normal View History

{ pkgs, ... }:
2023-06-11 15:51:26 +02:00
2024-04-04 02:06:54 +02:00
let
inherit (pkgs) fish;
2024-04-04 02:06:54 +02:00
in
2023-06-22 16:42:23 +02:00
{
users.defaultUserShell = fish;
environment = {
shells = [ fish ];
sessionVariables = {
GIT_DISCOVERY_ACROSS_FILESYSTEM = "1";
FZF_DEFAULT_OPTS = "--height 40% --reverse --border --color=16";
2024-04-17 02:04:24 +02:00
NODE_OPTIONS = "--max-old-space-size=16384";
BAT_THEME = "base16";
GATSBY_TELEMETRY_DISABLED = "1";
2023-05-18 15:49:56 +02:00
};
systemPackages = with pkgs; [
jq
fd
fzf
ripgrep
xh
file
timg
choose
sd
rustscan
yt-dlp
sox
asak
timer
dig
mtr
mediainfo
fdupes
whois
killall
trashy
hwinfo
duf
stress
hdparm
recode
rmlint
jpegoptim
pass
sudachi-rs
tango
npm-check-updates
fastfetch
onefetch
scc
genact
dwt1-shell-color-scripts
colorpanes
sanctity
cmatrix
gdu
hexyl
diskonaut
pgcli
litecli
p7zip
unar
rsync
rclone
ffmpeg
imagemagick
smartmontools
restic
borgbackup
zbar
phraze
lychee
ventoy
taskwarrior3
nixpkgs-review
nix-update
statix
nvd
nix-search-cli
nix-tree
rustc
rustfmt
cargo
cargo-tarpaulin
bacon
clippy
nodejs
deno
];
};
programs = {
fish.enable = true;
neovim.enable = true;
direnv = {
enable = true;
silent = true;
};
2023-05-18 15:49:56 +02:00
};
}