1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/configs/packages/default.nix

132 lines
2.7 KiB
Nix
Raw Normal View History

2019-08-18 11:17:28 +02:00
{ pkgs, ... }:
{
imports = [
./krebs.nix
2019-08-18 11:17:28 +02:00
./programming.nix
./writing.nix
2019-08-18 19:41:52 +02:00
./python.nix
./haskell
2019-09-05 07:18:08 +02:00
{
environment =
let
package = pkgs.fetchFromGitHub {
owner = "kmein";
repo = "mahlzeit";
rev = "85cb6d41e31fdfccbc3f83fd61cce8ef35112562";
sha256 = "0n6kc782dqbi64ya5jx5x8dcay2axrz1qbrlk4lyr6qnh241rr73";
};
mahlzeit = pkgs.haskellPackages.callPackage package {};
in {
variables.RECIPE_HOME = "/home/kfm/prog/git/wissen/recipes";
systemPackages = [ mahlzeit ];
};
}
2019-08-18 11:17:28 +02:00
{
environment.systemPackages = with pkgs; [
] ++ [ # internet
aria2
firefox
tor-browser-bundle-bin
# thunderbird
2019-09-27 23:52:54 +02:00
unstable.tdesktop
2019-08-18 11:17:28 +02:00
w3m
wget
2019-12-24 15:44:05 +01:00
httpie
2019-08-18 11:17:28 +02:00
whois
ddgr
# python3Packages.instaloader
# mtr # my traceroute
2019-10-09 18:58:35 +02:00
] ++ [
gnome3.nautilus
2019-08-18 11:17:28 +02:00
] ++ [ # media
ffmpeg
imagemagick
sxiv
] ++ [ # archive
unzip
unrar
p7zip
zip
] ++ [ # monitor
htop
iotop
iftop
lsof
psmisc
] ++ [ # shell
bat
dos2unix
ncdu
du-dust
fd
file
2019-12-24 15:44:05 +01:00
python3Packages.jsonschema # json validation
2019-08-18 11:17:28 +02:00
jq # json manipulation
jo # json creation
kmein.nav # json navigation
xsv
xmlstarlet
manpages
posix_man_pages
moreutils
ranger
ripgrep
rlwrap
progress # display progress bars for pipes
up # universal plumber (piping tool)
] ++ [ # hardware
usbutils
pciutils
lshw
] ++ [ # graphical
arandr
libnotify
xclip
xorg.xkill
] ++ [ # programming
nix-prefetch-git
] ++ [ # media
audacity
calibre
inkscape
xpdf
pdfgrep
pdftk
spotify
python3Packages.spotify-cli-linux
youtubeDL
] ++ [ # math
bc
] ++ [ # shell
pass
# (pass.withExtensions (ext: [ext.pass-otp]))
2019-08-18 11:17:28 +02:00
fzf
gnupg
# kmein.mnemosyne
2019-09-27 23:53:16 +02:00
kmein.favicon
2019-08-18 11:17:28 +02:00
kmein.autorenkalender
# kmein.bvg
2019-08-18 11:17:28 +02:00
kmein.daybook
kmein.depp
# kmein.dirmir
2019-08-18 11:17:28 +02:00
kmein.genius
kmein.instaget
kmein.literature-quote
kmein.n
kmein.odyssey
kmein.wttr
2019-08-18 19:14:58 +02:00
kmein.slide
kmein.tolino-screensaver
2019-08-18 11:17:28 +02:00
memo
nix-git
2019-11-09 16:33:59 +01:00
# fzf-wrappers
2019-08-18 11:17:28 +02:00
par
qrencode
unstable.hugo
unstable.zola
wtf
];
}
];
}