openconnect
This commit is contained in:
parent
81935275ab
commit
b5f913c929
6 changed files with 83 additions and 29 deletions
|
|
@ -21,33 +21,53 @@
|
|||
programs.home-manager.enable = true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
# texlive.combined.scheme-medium
|
||||
|
||||
# commandline
|
||||
exa
|
||||
mattermost-desktop
|
||||
fzf
|
||||
isync
|
||||
jq
|
||||
khal
|
||||
khard
|
||||
libsecret
|
||||
nnn
|
||||
nodejs
|
||||
notmuch
|
||||
pandoc
|
||||
qutebrowser
|
||||
rstudio
|
||||
ruby
|
||||
jq
|
||||
silver-searcher
|
||||
tdesktop
|
||||
tmux
|
||||
tree
|
||||
vdirsyncer
|
||||
keepassxc
|
||||
zathura
|
||||
zotero
|
||||
openssl
|
||||
w3m
|
||||
|
||||
# messenger
|
||||
mattermost-desktop
|
||||
signal-desktop
|
||||
tdesktop
|
||||
element-desktop
|
||||
whatsapp-for-linux
|
||||
|
||||
# email
|
||||
msmtp
|
||||
notmuch
|
||||
isync
|
||||
w3m
|
||||
openssl
|
||||
gnupg
|
||||
|
||||
# office
|
||||
vdirsyncer
|
||||
khal
|
||||
khard
|
||||
gnome.gnome-sound-recorder
|
||||
|
||||
# publishing
|
||||
pandoc
|
||||
libreoffice
|
||||
zotero
|
||||
zathura
|
||||
|
||||
# web
|
||||
qutebrowser
|
||||
|
||||
# deveolopment
|
||||
nodejs
|
||||
ruby
|
||||
|
||||
# secrets
|
||||
libsecret
|
||||
keepassxc
|
||||
];
|
||||
|
||||
imports = [
|
||||
|
|
@ -56,6 +76,7 @@
|
|||
./fish.nix
|
||||
./neomutt.nix
|
||||
./tex.nix
|
||||
./openconnect.nix
|
||||
];
|
||||
|
||||
home.shellAliases = {
|
||||
|
|
|
|||
6
home/openconnect.nix
Normal file
6
home/openconnect.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = [ pkgs.openconnect ];
|
||||
xdg.configFile."openconnect/config".text = "lol";
|
||||
}
|
||||
20
home/tex.nix
20
home/tex.nix
|
|
@ -2,8 +2,26 @@
|
|||
|
||||
let
|
||||
tex = (pkgs.texlive.combine {
|
||||
inherit (pkgs.texlive) scheme-medium
|
||||
inherit (pkgs.texlive)
|
||||
scheme-medium
|
||||
arydshln
|
||||
bbding
|
||||
csquotes
|
||||
environ
|
||||
gensymb
|
||||
lastpage
|
||||
ly1
|
||||
makecell
|
||||
multirow
|
||||
sourcesanspro
|
||||
tabu
|
||||
tcolorbox
|
||||
threeparttable
|
||||
threeparttablex
|
||||
was
|
||||
wrapfig
|
||||
xpatch
|
||||
;
|
||||
});
|
||||
in
|
||||
{ # home-manager
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue