X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=overlays%2Fenvironments%2Fimmae-eu.nix;h=59edbc5bc7155ec93e3d2c704646415bbba6896b;hb=HEAD;hp=b5350486433128d57570edb77ac3b1f29b9cbe94;hpb=e820fa7dd856f1bd632cc9813077759628b11385;p=perso%2FImmae%2FConfig%2FNix.git diff --git a/overlays/environments/immae-eu.nix b/overlays/environments/immae-eu.nix deleted file mode 100644 index b535048..0000000 --- a/overlays/environments/immae-eu.nix +++ /dev/null @@ -1,115 +0,0 @@ -self: super: with self; -let - # https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh - # https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks - paths = [ - # archives - lzo unzip bzip2 p7zip xz - # unrar is unfree - - # backups - duply - - # calendar/contacts - abook khard khal cadaver vdirsyncer pal - - # computing - boinctui - - # cryptocurrencies - cardano sia monero - xmr-stak - solc - iota-cli-app - - # debugging - rr valgrind netcat-gnu strace - - # documentations - unicodeDoc - - # e-mails - muttprint mutt-ics - notmuch-python2 notmuch-python3 notmuch-vim - neomutt mairix notmuch - bogofilter fetchmail - - # git - vcsh gitRepo gitAndTools.stgit tig - - # graphical tools - nextcloud-client firefox - dwm dmenu st - - # images - feh imagemagick tiv graphicsmagick - - # internet browsing - w3m lynx links elinks browsh weboob urlview googler urlwatch - - # less - python3Packages.pygments lesspipe highlight sourceHighlight - - # monitoring - cnagios mtop pg_activity nagios-cli mtr - iftop htop iotop iperf - goaccess - # nagnu - - # messaging/forums/news - flrn slrn - telegram-cli telegram-history-dump telegramircd - weechat profanity - newsboat irssi - - # nix - mylibs.yarn2nixPackage.yarn2nix - nixops nix-prefetch-scripts nix-generate-from-cpan - nix-zsh-completions bundix nodePackages.bower2nix - # (nixos {}).nixos-generate-config - # (nixos {}).nixos-install - # (nixos {}).nixos-enter - # (nixos {}).manual.manpages - - # note taking - note terminal-velocity jrnl - - # office - sc-im ranger - genius bc - ledger - tmux - rtorrent - ldapvi - - # password management - pass apg pwgen - - # pdf - pdftk poppler_utils - - # programming - pelican emacs26-nox ctags - wdiff - - # security - keybase - - # todolist/time management - taskwarrior vit timewarrior - - # video/music - youtube-dl ncmpc ncmpcpp ffmpeg - - # other tools - pgloader s3cmd lftp jq cpulimit libxslt - ]; -in -{ - myEnvironments.immae-eu = buildEnv { - name = "immae-eu-packages"; - inherit paths; - pathsToLink = [ "/bin" "/etc" "/include" "/lib" "/libexec" "/share"]; - extraOutputsToInstall = [ "bin" "man" "doc" "info" ]; - }; -}