1
0
mirror of https://github.com/kmein/niveum synced 2026-03-17 18:41:09 +01:00
Files
niveum/configs/packages.nix

175 lines
2.8 KiB
Nix
Raw Normal View History

2019-01-02 00:10:38 +01:00
{ config, pkgs, lib, ... }:
2019-01-02 02:18:27 +01:00
let
scripts = import ../dot/scripts.nix { inherit pkgs lib; };
daybook = pkgs.callPackage ../packages/daybook.nix {};
todoist = pkgs.callPackage ../packages/todoist {};
2019-01-03 00:43:21 +01:00
unstable = import <nixos-unstable> {};
in with pkgs;
{
2018-12-04 21:07:13 +01:00
nixpkgs.config.allowUnfree = true;
fonts.enableDefaultFonts = true;
fonts.fonts = [
2019-01-04 16:36:52 +01:00
cantarell-fonts
2018-10-07 09:22:43 +02:00
corefonts
eb-garamond
fira
2018-12-18 23:40:58 +01:00
libertine
lmodern
2019-01-04 16:36:52 +01:00
noto-fonts
powerline-fonts
roboto
2019-01-02 02:18:27 +01:00
xlibs.fontschumachermisc
2019-01-04 16:36:52 +01:00
ubuntu_font_family
];
environment.systemPackages = [
2019-01-02 02:18:27 +01:00
] ++ [ # office
abiword
2019-01-02 02:18:27 +01:00
gnumeric
2019-01-04 16:36:52 +01:00
typora
2019-01-02 02:18:27 +01:00
] ++ [ # theme
config.constants.theme.gtk.package
config.constants.theme.icon.package
config.constants.theme.cursor.package
2019-01-02 02:18:27 +01:00
] ++ [ # internet
aria2
chromium
firefox
2019-01-02 02:18:27 +01:00
tor-browser-bundle-bin
w3m
wget
whois
] ++ [ # media
ffmpeg
mpv
pamixer
pavucontrol
2019-01-02 02:18:27 +01:00
gthumb
imagemagick
sxiv
blueman
zathura
] ++ [ # archive
unzip
unrar
p7zip
] ++ [ # monitor
htop
iotop
iftop
lsof
psmisc
] ++ [ # shell
bat
dos2unix
file
git
manpages
posix_man_pages
most
ranger
ripgrep
rlwrap
2019-01-02 02:18:27 +01:00
tree
] ++ [ # hardware
pmount
usbutils
pciutils
] ++ [ # graphical
arandr
libnotify
xclip
xorg.xkill
wpa_supplicant_gui
];
programs.command-not-found.enable = true;
2018-11-21 16:01:41 +01:00
programs.java = {
enable = true;
2018-12-04 23:01:17 +01:00
package = pkgs.openjdk;
2018-11-21 16:01:41 +01:00
};
virtualisation.docker.enable = true;
services.urxvtd.enable = true;
services.dbus.packages = [ pkgs.gnome3.dconf ];
users.users.kfm.packages = scripts ++ [
2019-01-02 02:18:27 +01:00
] ++ [ # typesetting
(texlive.combine { inherit (pkgs.texlive)
scheme-tetex
latexmk
biblatex
comment
csquotes
enumitem
fontaxes
ifnextok
imakeidx
2019-01-01 16:45:49 +01:00
hardwrap
titlesec
libertine
logreq
marginnote
mweights
2019-01-01 16:45:49 +01:00
realscripts
pbox
stdclsdv
fdsymbol
moderncv
xstring;
2019-01-01 16:45:49 +01:00
})
2019-01-02 02:18:27 +01:00
pandoc
haskellPackages.pandoc-citeproc
asciidoctor
2019-01-02 02:18:27 +01:00
] ++ [ # programming
2018-10-01 08:26:46 +02:00
cloc
2019-01-02 02:18:27 +01:00
gnumake
cabal2nix
clojure
gcc
2018-10-01 08:29:08 +02:00
ghc
haskellPackages.ghcid
haskellPackages.hakyll
haskellPackages.hasktags
haskellPackages.hindent
haskellPackages.hoogle
hlint
lua
mypy
nix-prefetch-git
nodejs
ocaml
python3
python36Packages.black
2018-10-19 21:40:03 +02:00
python36Packages.flake8
racket-minimal
rustup
scala
shellcheck
2019-01-02 02:18:27 +01:00
stack
] ++ [ # media
audacity
calibre
inkscape
2019-01-08 18:22:54 +01:00
poppler_utils
spotify
youtubeDL
2019-01-02 02:18:27 +01:00
] ++ [ # cloud
dropbox-cli
grive2
seafile-client
] ++ [ # math
bc
graphviz
maxima
] ++ [ # shell
daybook
# todoist
2019-01-03 00:43:21 +01:00
unstable.hledger
2019-01-02 02:18:27 +01:00
jo
jq
memo
par
];
}