From 95aff447719270f0816ac6d2db3a003c585ac0a4 Mon Sep 17 00:00:00 2001 From: makefu Date: Wed, 22 Apr 2020 08:11:00 +0200 Subject: ma urxvtd: rxvt_unicode_with-plugins -> rxvt_unicode-with-plugins --- makefu/2configs/gui/urxvtd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefu/2configs/gui/urxvtd.nix b/makefu/2configs/gui/urxvtd.nix index 286b87ab3..cb6c25840 100644 --- a/makefu/2configs/gui/urxvtd.nix +++ b/makefu/2configs/gui/urxvtd.nix @@ -10,7 +10,7 @@ in { serviceConfig = { SyslogIdentifier = "urxvtd"; ExecReload = "${pkgs.coreutils}/bin/echo NOP"; - ExecStart = "${pkgs.rxvt_unicode_with-plugins}/bin/urxvtd"; + ExecStart = "${pkgs.rxvt_unicode-with-plugins}/bin/urxvtd"; Restart = "always"; RestartSec = "2s"; StartLimitBurst = 0; -- cgit v1.2.3 From e7caceb6df27615f33083ae9430b61ffebcff5a7 Mon Sep 17 00:00:00 2001 From: makefu Date: Wed, 22 Apr 2020 08:16:49 +0200 Subject: ma zsh.nix: mirage -> sxiv --- makefu/2configs/home-manager/zsh.nix | 1 + makefu/2configs/tools/extra-gui.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/makefu/2configs/home-manager/zsh.nix b/makefu/2configs/home-manager/zsh.nix index 0dc7f256b..1f4ceea6c 100644 --- a/makefu/2configs/home-manager/zsh.nix +++ b/makefu/2configs/home-manager/zsh.nix @@ -9,6 +9,7 @@ home-manager.users.makefu.home.packages = [ pkgs.bat ]; home-manager.users.makefu.programs.zsh.shellAliases = { cat = "bat --style=header,snip"; + mirage = "sxiv"; # only available when tools/extra-gui is in use catn = "${pkgs.coreutils}/bin/cat"; ncat = "${pkgs.coreutils}/bin/cat"; }; diff --git a/makefu/2configs/tools/extra-gui.nix b/makefu/2configs/tools/extra-gui.nix index 7c01104a0..49b36a5d7 100644 --- a/makefu/2configs/tools/extra-gui.nix +++ b/makefu/2configs/tools/extra-gui.nix @@ -4,7 +4,7 @@ users.users.makefu.packages = with pkgs;[ # media gimp - mirage + # mirage - last time available in 19.09 inkscape libreoffice # skype -- cgit v1.2.3 From 2a84f65e4acb0c389136dd29f706696c5e4ba6e0 Mon Sep 17 00:00:00 2001 From: makefu Date: Wed, 22 Apr 2020 08:44:48 +0200 Subject: ma wbob-kiosk: set default session to xfce --- makefu/2configs/gui/wbob-kiosk.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefu/2configs/gui/wbob-kiosk.nix b/makefu/2configs/gui/wbob-kiosk.nix index 6da1a37e7..5d409b8df 100644 --- a/makefu/2configs/gui/wbob-kiosk.nix +++ b/makefu/2configs/gui/wbob-kiosk.nix @@ -12,7 +12,7 @@ windowManager = lib.mkForce { awesome.enable = false; - default = "none"; + default = "xfce"; }; desktopManager.xfce = { extraSessionCommands = '' -- cgit v1.2.3 From 18b3df8741c7fd00252e5f41094844955f6e2294 Mon Sep 17 00:00:00 2001 From: makefu Date: Wed, 22 Apr 2020 09:31:38 +0200 Subject: ma tools/studio: whitelist openssl_1.0.2 --- makefu/2configs/tools/studio.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/makefu/2configs/tools/studio.nix b/makefu/2configs/tools/studio.nix index 2c8ca399d..0998a695e 100644 --- a/makefu/2configs/tools/studio.nix +++ b/makefu/2configs/tools/studio.nix @@ -1,6 +1,9 @@ { pkgs, ... }: { + nixpkgs.config.permittedInsecurePackages = [ + "openssl-1.0.2u" # required for studio-link + ]; users.users.makefu.packages = with pkgs; [ obs-studio studio-link -- cgit v1.2.3 From a40a1f9c6c87b650ba0fde699dc07dee3715d43e Mon Sep 17 00:00:00 2001 From: makefu Date: Wed, 22 Apr 2020 16:05:06 +0200 Subject: rtorrent module: remove 17.03 crutch --- krebs/3modules/rtorrent.nix | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/krebs/3modules/rtorrent.nix b/krebs/3modules/rtorrent.nix index 43c2798d5..eb27aa34d 100644 --- a/krebs/3modules/rtorrent.nix +++ b/krebs/3modules/rtorrent.nix @@ -301,6 +301,7 @@ let default = mkDefault true; inherit (webcfg) basicAuth; root = optionalString rucfg.enable webdir; + listen = [ { inherit (webcfg) addr port; } ]; locations = { "/RPC2".extraConfig = '' @@ -319,15 +320,7 @@ let include ${pkgs.nginx}/conf/fastcgi.conf; ''; } ); - # workaround because upstream nginx api changed - # TODO remove when nobody uses 17.03 anymore - } // (if hasAttr "port" (head options.services.nginx.virtualHosts.type.getSubModules).submodule.options then { - port = webcfg.port; - } else { - listen = [ - { inherit (webcfg) addr port; } - ]; - }); + }; }; rutorrent-imp = { -- cgit v1.2.3 From c80ca049f1db5725a10f7110aeb5e63eb5b88611 Mon Sep 17 00:00:00 2001 From: makefu Date: Wed, 22 Apr 2020 16:36:44 +0200 Subject: ma default: accept acme terms --- makefu/2configs/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/makefu/2configs/default.nix b/makefu/2configs/default.nix index 0cbb5efe7..6166b87c3 100644 --- a/makefu/2configs/default.nix +++ b/makefu/2configs/default.nix @@ -85,4 +85,8 @@ with import ; RuntimeMaxUse=128M ''; environment.pathsToLink = [ "/share" ]; + security.acme = { + email = "letsencrypt@syntax-fehler.de"; + acceptTerms = true; + }; } -- cgit v1.2.3