1
0
forked from extern/nix-config
donovanglover-nix-config/modules/default.nix
Donovan Glover 343076f942
meta: Move terminal files to modules
Since all of these files do roughly the same thing (that is, configure
the system in a specific way that a separate file seems necessary), this
should reduce the overall complexity of the project tree.
2023-06-05 11:44:37 -04:00

120 lines
1.5 KiB
Nix

{ pkgs, ... }:
{
imports = [
./feh
./kitty
./librewolf
./mpv
./piper
./qutebrowser
./thunar
./zathura
./fish-starship
./git
./gpg
./ncmpcpp
./neovim
./joshuto
];
virtualisation.vmware.host = {
enable = true;
extraConfig = ''
# Enable 3D acceleration on the host
mks.gl.allowUnsupportedDrivers = "TRUE"
mks.vk.allowUnsupportedDevices = "TRUE"
'';
};
environment.systemPackages = with pkgs; [
audacity
gimp
anki
logseq
mullvad-browser
spek
keepassxc
libreoffice
wget
jq
exa
fd
fzf
gdu
fdupes
mediainfo
ponysay
lolcat
cmatrix
sox
httpie
p7zip
ripgrep
rsync
unar
genact
ffmpeg
killall
trashy
whois
dwt1-shell-color-scripts
dig
yt-dlp
neofetch
pywal
brightnessctl
zellij
librespeed-cli
wiki-tui
hexyl
nb
jpegoptim
playerctl
recode
rmlint
sd
crystal
shards
smartmontools
sqlitebrowser
visidata
scc
hwinfo
stress
choose
gum
hdparm
imagemagick
onefetch
restic
wails
watchexec
memento
mpvpaper
timg
kanjidraw
ventoy
wf-recorder
mdcat
mdbook
zola
file
tessen
wtype
mtr
];
home-manager.sharedModules = [{
programs.bat.enable = true;
}];
programs.htop = {
enable = true;
package = pkgs."htop-vim";
settings = { tree_view = 1; };
};
}