From c6f88647104aa67aec62cae6266517c6726175c1 Mon Sep 17 00:00:00 2001 From: Till Date: Fri, 19 May 2023 09:56:05 +0200 Subject: [PATCH] diesdas --- home/R.nix | 1 + home/fish.nix | 3 +++ home/openconnect.nix | 6 +++++- system/default.nix | 4 ++++ 4 files changed, 13 insertions(+), 1 deletion(-) diff --git a/home/R.nix b/home/R.nix index 22ba143..bfb624e 100644 --- a/home/R.nix +++ b/home/R.nix @@ -47,6 +47,7 @@ rvest rmarkdown knitr + openxlsx rnaturalearth rnaturalearthdata qrcode diff --git a/home/fish.nix b/home/fish.nix index 428975d..ae2b800 100644 --- a/home/fish.nix +++ b/home/fish.nix @@ -27,6 +27,9 @@ backyin = "duplicity --progress --no-encryption --exclude ~/.local/share/Trash/ --exclude ~/.cache/ ~ file:///run/media/till/yin/nova/"; backyang = "duplicity --progress --no-encryption --exclude ~/.local/share/Trash/ --exclude ~/.cache/ ~ file:///run/media/till/yang/nova/"; }; + shellAbbrs = { + openconnect = "openconnect --config=/home/till/.config/openconnect/config"; + }; shellInit = '' function fish_greeting; end diff --git a/home/openconnect.nix b/home/openconnect.nix index 4d5500d..0fd5b5a 100644 --- a/home/openconnect.nix +++ b/home/openconnect.nix @@ -2,5 +2,9 @@ { home.packages = [ pkgs.openconnect ]; - xdg.configFile."openconnect/config".text = "lol"; + xdg.configFile."openconnect/config".text = '' + server=vpn-einwahl.uni-frankfurt.de + user=tstraube + protocol=anyconnect + ''; } diff --git a/system/default.nix b/system/default.nix index 1831cdf..010e2f4 100644 --- a/system/default.nix +++ b/system/default.nix @@ -26,6 +26,10 @@ shell = pkgs.fish; }; + programs.steam = { + enable = true; + }; + nixpkgs.config.allowUnfree = true; nixpkgs.config.joypixels.acceptLicense = true;