nix-config/modules/default.nix

120 lines
1.5 KiB
Nix
Raw Normal View History

2023-05-19 08:54:35 +02:00
{ pkgs, ... }:
2023-05-18 21:54:15 +02:00
{
imports = [
./feh
./kitty
./librewolf
./mpv
./piper
./qutebrowser
./thunar
./zathura
./fish-starship
./git
./gpg
./ncmpcpp
./neovim
./joshuto
2023-05-18 21:54:15 +02:00
];
2023-05-19 08:54:35 +02:00
virtualisation.vmware.host = {
enable = true;
extraConfig = ''
# Enable 3D acceleration on the host
mks.gl.allowUnsupportedDrivers = "TRUE"
mks.vk.allowUnsupportedDevices = "TRUE"
'';
};
2023-05-19 08:54:35 +02:00
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
2023-05-19 08:54:35 +02:00
];
home-manager.sharedModules = [{
programs.bat.enable = true;
}];
programs.htop = {
enable = true;
package = pkgs."htop-vim";
settings = { tree_view = 1; };
};
2023-05-18 21:54:15 +02:00
}