pkgsets.nix: Removed whitespaces, renamed mailutils to mail_utils and added tramp mode to emacs.
This commit is contained in:
parent
ee4e3264f6
commit
72a6bba36c
1 changed files with 15 additions and 13 deletions
|
@ -94,6 +94,7 @@ let
|
||||||
/* Other Stuff, not yet sorted */
|
/* Other Stuff, not yet sorted */
|
||||||
mu4e-alert
|
mu4e-alert
|
||||||
google-translate
|
google-translate
|
||||||
|
tramp
|
||||||
transmission
|
transmission
|
||||||
org-plus-contrib orgit ox-gfm ox-rst
|
org-plus-contrib orgit ox-gfm ox-rst
|
||||||
easy-jekyll markdown-mode impatient-mode simple-httpd htmlize
|
easy-jekyll markdown-mode impatient-mode simple-httpd htmlize
|
||||||
|
@ -132,14 +133,15 @@ let
|
||||||
]);
|
]);
|
||||||
|
|
||||||
extra = with pkgs; [
|
extra = with pkgs; [
|
||||||
transmission
|
|
||||||
texlive.combined.scheme-full
|
|
||||||
];
|
|
||||||
|
|
||||||
mailutils = with pkgs; [
|
|
||||||
fetchmail
|
|
||||||
imagemagick
|
imagemagick
|
||||||
|
texlive.combined.scheme-full
|
||||||
|
transmission
|
||||||
|
];
|
||||||
|
|
||||||
|
mail_utils = with pkgs; [
|
||||||
|
fetchmail
|
||||||
isync
|
isync
|
||||||
|
mailutils
|
||||||
mu-git
|
mu-git
|
||||||
pandoc
|
pandoc
|
||||||
postfix
|
postfix
|
||||||
|
@ -167,7 +169,7 @@ let
|
||||||
(with gitpkgs.eclipses; eclipseWithPlugins {
|
(with gitpkgs.eclipses; eclipseWithPlugins {
|
||||||
eclipse = eclipse-platform;
|
eclipse = eclipse-platform;
|
||||||
jvmArgs = [ "-Xmx2048m" ];
|
jvmArgs = [ "-Xmx2048m" ];
|
||||||
plugins = with plugins; [
|
plugins = with plugins; [
|
||||||
color-theme
|
color-theme
|
||||||
# emacsplus
|
# emacsplus
|
||||||
checkstyle
|
checkstyle
|
||||||
|
@ -214,25 +216,25 @@ let
|
||||||
# flask-compress
|
# flask-compress
|
||||||
# flask-cors
|
# flask-cors
|
||||||
# flask-limiter
|
# flask-limiter
|
||||||
# flask-pymongo
|
# flask-pymongo
|
||||||
# flask-restful
|
# flask-restful
|
||||||
# flask-restplus
|
# flask-restplus
|
||||||
# flask_assets
|
# flask_assets
|
||||||
# flask_elastic
|
# flask_elastic
|
||||||
# flask_login
|
# flask_login
|
||||||
# flask_mail
|
# flask_mail
|
||||||
# flask_marshmallow
|
# flask_marshmallow
|
||||||
# flask_migrate
|
# flask_migrate
|
||||||
# flask_oauthlib
|
# flask_oauthlib
|
||||||
# flask_principal
|
# flask_principal
|
||||||
# flask_script
|
# flask_script
|
||||||
# flask_sqlalchemy
|
# flask_sqlalchemy
|
||||||
# flask_testing
|
# flask_testing
|
||||||
# flask_wtf
|
# flask_wtf
|
||||||
# flaskbabel
|
# flaskbabel
|
||||||
] ++ optionals (elem "i3" cfg.desktop.wms) [ py3status pytz tzlocal ]);
|
] ++ optionals (elem "i3" cfg.desktop.wms) [ py3status pytz tzlocal ]);
|
||||||
|
|
||||||
rustpkgs = with pkgs; [
|
rustpkgs = with pkgs; [
|
||||||
rustup
|
rustup
|
||||||
carnix
|
carnix
|
||||||
rustracer
|
rustracer
|
||||||
|
@ -274,7 +276,7 @@ in {
|
||||||
++ (optPkgs dict "dict")
|
++ (optPkgs dict "dict")
|
||||||
++ (optPkgs [emacs] "emacs")
|
++ (optPkgs [emacs] "emacs")
|
||||||
++ (optPkgs extra "extra")
|
++ (optPkgs extra "extra")
|
||||||
++ (optPkgs mailutils "mailutils")
|
++ (optPkgs mail_utils "mailutils")
|
||||||
++ (optPkgs cpp "cpp")
|
++ (optPkgs cpp "cpp")
|
||||||
++ (optPkgs [haskell] "haskell")
|
++ (optPkgs [haskell] "haskell")
|
||||||
++ (optPkgs java "java")
|
++ (optPkgs java "java")
|
||||||
|
|
Loading…
Reference in a new issue