mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-23 08:45:09 +01:00
fbb09fea48
Does the same thing (with the exception of VISUAL not being set for now) but makes the module more portable overall.
108 lines
1.9 KiB
Nix
108 lines
1.9 KiB
Nix
{ pkgs, lib, ... }:
|
|
|
|
let
|
|
inherit (pkgs) fish;
|
|
inherit (lib) mkMerge;
|
|
inherit (builtins) attrValues;
|
|
in
|
|
{
|
|
config = {
|
|
users.defaultUserShell = fish;
|
|
environment.shells = [ fish ];
|
|
|
|
environment.sessionVariables = {
|
|
GIT_DISCOVERY_ACROSS_FILESYSTEM = "1";
|
|
FZF_DEFAULT_OPTS = "--height 40% --reverse --border --color=16";
|
|
NODE_OPTIONS = "--max-old-space-size=16384";
|
|
BAT_THEME = "base16";
|
|
GATSBY_TELEMETRY_DISABLED = "1";
|
|
};
|
|
|
|
environment.systemPackages = mkMerge [
|
|
(attrValues {
|
|
inherit (pkgs)
|
|
wget
|
|
jq
|
|
eza
|
|
fd
|
|
fzf
|
|
ripgrep
|
|
file
|
|
timg
|
|
choose
|
|
sd
|
|
;
|
|
inherit (pkgs)
|
|
treefmt
|
|
httpie
|
|
yt-dlp
|
|
sox
|
|
dig
|
|
mtr
|
|
mediainfo
|
|
fdupes
|
|
whois
|
|
killall
|
|
trashy
|
|
hwinfo
|
|
stress
|
|
hdparm
|
|
recode
|
|
rmlint
|
|
jpegoptim
|
|
watchexec
|
|
zola
|
|
pass
|
|
;
|
|
inherit (pkgs)
|
|
sudachi-rs
|
|
tango
|
|
;
|
|
inherit (pkgs)
|
|
neofetch
|
|
onefetch
|
|
scc
|
|
genact
|
|
dwt1-shell-color-scripts
|
|
colorpanes
|
|
sanctity
|
|
cmatrix
|
|
;
|
|
inherit (pkgs)
|
|
gdu
|
|
hexyl
|
|
visidata
|
|
zellij
|
|
diskonaut
|
|
pgcli
|
|
;
|
|
inherit (pkgs)
|
|
p7zip
|
|
unar
|
|
rsync
|
|
rclone
|
|
ffmpeg
|
|
imagemagick
|
|
smartmontools
|
|
restic
|
|
zbar
|
|
lychee
|
|
ventoy
|
|
;
|
|
inherit (pkgs)
|
|
nixpkgs-review
|
|
nix-init
|
|
nvd
|
|
nix-search-cli
|
|
;
|
|
})
|
|
];
|
|
|
|
programs = {
|
|
fish.enable = true;
|
|
neovim.enable = true;
|
|
direnv.enable = true;
|
|
};
|
|
};
|
|
}
|