diff options
| author | makefu <github@syntax-fehler.de> | 2015-10-09 12:06:27 +0200 | 
|---|---|---|
| committer | makefu <github@syntax-fehler.de> | 2015-10-09 12:06:27 +0200 | 
| commit | 42c2a52eaa7a111824f00582eb0479154b51211e (patch) | |
| tree | 8c1b64fce6a8c70275a68f8b8753bff2fb633543 | |
| parent | e507ab5ba770d57e846aa79f12ef055bd2fa70e4 (diff) | |
| parent | 965eba6073f9de3726d9776ca18f6de9ad8ec867 (diff) | |
Merge branch 'master' of pnp:stockholm
| -rw-r--r-- | krebs/3modules/default.nix | 1 | ||||
| -rw-r--r-- | krebs/3modules/lass/default.nix | 10 | ||||
| -rw-r--r-- | krebs/3modules/realwallpaper.nix (renamed from lass/3modules/realwallpaper.nix) | 10 | ||||
| -rw-r--r-- | krebs/5pkgs/Reaktor/default.nix | 4 | ||||
| -rw-r--r-- | krebs/5pkgs/default.nix | 1 | ||||
| -rw-r--r-- | krebs/5pkgs/realwallpaper.nix (renamed from lass/5pkgs/realwallpaper.nix) | 0 | ||||
| -rw-r--r-- | lass/1systems/echelon.nix | 1 | ||||
| -rw-r--r-- | lass/2configs/desktop-base.nix | 4 | ||||
| -rw-r--r-- | lass/2configs/git.nix | 2 | ||||
| -rw-r--r-- | lass/2configs/realwallpaper.nix | 6 | ||||
| -rw-r--r-- | lass/3modules/default.nix | 1 | ||||
| -rw-r--r-- | lass/5pkgs/default.nix | 1 | ||||
| -rw-r--r-- | makefu/1systems/pnp.nix | 3 | ||||
| -rw-r--r-- | makefu/2configs/Reaktor/shack-correct.nix | 20 | ||||
| -rw-r--r-- | makefu/2configs/Reaktor/shack-correct.sh | 6 | ||||
| -rw-r--r-- | makefu/3modules/tinc_graphs.nix | 4 | 
16 files changed, 51 insertions, 23 deletions
| diff --git a/krebs/3modules/default.nix b/krebs/3modules/default.nix index 430194405..edfbde9ba 100644 --- a/krebs/3modules/default.nix +++ b/krebs/3modules/default.nix @@ -14,6 +14,7 @@ let        ./iptables.nix        ./nginx.nix        ./Reaktor.nix +      ./realwallpaper.nix        ./retiolum.nix        ./urlwatch.nix      ]; diff --git a/krebs/3modules/lass/default.nix b/krebs/3modules/lass/default.nix index aa071270c..9dbc597ed 100644 --- a/krebs/3modules/lass/default.nix +++ b/krebs/3modules/lass/default.nix @@ -34,9 +34,11 @@ with import ../../4lib { inherit lib; };            '';          };        }; +      ssh.privkey.path = <secrets/ssh.id_ed25519>; +      ssh.pubkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL21QDOEFdODFh6WAfNp6odrXo15pEsDQuGJfMu/cKzK";      };      fastpoke = { -      dc = "lass"; #dc = "cac"; +      dc = "lass";        nets = rec {          internet = {            addrs4 = ["193.22.164.36"]; @@ -95,6 +97,8 @@ with import ../../4lib { inherit lib; };            '';          };        }; +      ssh.privkey.path = <secrets/ssh.id_ed25519>; +      ssh.pubkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN7oYx7Lbkc0wPYNp92LQF93DCtxsGzOkVD91FJQzVZl";      };      uriel = {        cores = 1; @@ -119,6 +123,8 @@ with import ../../4lib { inherit lib; };            '';          };        }; +      ssh.privkey.path = <secrets/ssh.id_ed25519>; +      ssh.pubkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBryIo/Waw8SWvlQ0+5I+Bd/dJgcMd6iPXtELS6gQXoc";        secure = true;      };      mors = { @@ -145,6 +151,8 @@ with import ../../4lib { inherit lib; };          };        };        secure = true; +      ssh.privkey.path = <secrets/ssh.id_ed25519>; +      ssh.pubkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINAMPlIG+6u75GJ3kvsPF6OoIZsU+u8ZQ+rdviv5fNMD";      };    }; diff --git a/lass/3modules/realwallpaper.nix b/krebs/3modules/realwallpaper.nix index 85dd35233..7e02538f5 100644 --- a/lass/3modules/realwallpaper.nix +++ b/krebs/3modules/realwallpaper.nix @@ -8,12 +8,10 @@ let      mkIf    ; -  lpkgs = import ../5pkgs { inherit pkgs; }; - -  cfg = config.lass.realwallpaper; +  cfg = config.krebs.realwallpaper;    out = { -    options.lass.realwallpaper = api; +    options.krebs.realwallpaper = api;      config = mkIf cfg.enable imp;    }; @@ -57,13 +55,13 @@ let    imp = {      systemd.timers.realwallpaper = {        description = "real wallpaper generator timer"; +      wantedBy = [ "timers.target" ];        timerConfig = cfg.timerConfig;      };      systemd.services.realwallpaper = {        description = "real wallpaper generator"; -      wantedBy = [ "multi-user.target" ];        after = [ "network.target" ];        path = with pkgs; [ @@ -85,7 +83,7 @@ let        serviceConfig = {          Type = "simple"; -        ExecStart = "${lpkgs.realwallpaper}/realwallpaper.sh"; +        ExecStart = "${pkgs.realwallpaper}/realwallpaper.sh";          User = "realwallpaper";        };      }; diff --git a/krebs/5pkgs/Reaktor/default.nix b/krebs/5pkgs/Reaktor/default.nix index 524782081..c38aa6423 100644 --- a/krebs/5pkgs/Reaktor/default.nix +++ b/krebs/5pkgs/Reaktor/default.nix @@ -2,14 +2,14 @@  python3Packages.buildPythonPackage rec {    name = "Reaktor-${version}"; -  version = "0.4.3"; +  version = "0.5.0";    propagatedBuildInputs = with pkgs;[      python3Packages.docopt      python3Packages.requests2    ];    src = fetchurl {      url = "https://pypi.python.org/packages/source/R/Reaktor/Reaktor-${version}.tar.gz"; -    sha256 = "1rvfw9vg7i7z2ah7m5k3zik2b92d3xdaqa8am62qw6vgvmxcmfp4"; +    sha256 = "1npag52xmnyqv56z0anyf6xf00q0smfzsippal0xdbxrfj7s8qim";    };    meta = {      homepage = http://krebsco.de/; diff --git a/krebs/5pkgs/default.nix b/krebs/5pkgs/default.nix index 72c113b90..616992b95 100644 --- a/krebs/5pkgs/default.nix +++ b/krebs/5pkgs/default.nix @@ -24,6 +24,7 @@ rec {    pssh = callPackage ./pssh {};    passwdqc-utils = callPackage ./passwdqc-utils {};    Reaktor = callPackage ./Reaktor {}; +  realwallpaper = callPackage ./realwallpaper.nix {};    youtube-tools = callPackage ./youtube-tools {};    execve = name: { filename, argv, envp ? {}, destination ? "" }: diff --git a/lass/5pkgs/realwallpaper.nix b/krebs/5pkgs/realwallpaper.nix index 4fea977ec..4fea977ec 100644 --- a/lass/5pkgs/realwallpaper.nix +++ b/krebs/5pkgs/realwallpaper.nix diff --git a/lass/1systems/echelon.nix b/lass/1systems/echelon.nix index 45f7ebd70..b301b504a 100644 --- a/lass/1systems/echelon.nix +++ b/lass/1systems/echelon.nix @@ -13,6 +13,7 @@ in {      ../2configs/retiolum.nix      ../2configs/realwallpaper-server.nix      ../2configs/privoxy-retiolum.nix +    ../2configs/git.nix      {        networking.interfaces.enp2s1.ip4 = [          { diff --git a/lass/2configs/desktop-base.nix b/lass/2configs/desktop-base.nix index ed84edefa..4e693997d 100644 --- a/lass/2configs/desktop-base.nix +++ b/lass/2configs/desktop-base.nix @@ -28,14 +28,14 @@ in {    environment.systemPackages = with pkgs; [      powertop +    sxiv +    much    #window manager stuff      haskellPackages.xmobar      haskellPackages.yeganesh      dmenu2      xlibs.fontschumachermisc - -    sxiv    ];    fonts.fonts = [ diff --git a/lass/2configs/git.nix b/lass/2configs/git.nix index 78e6f0baa..595936da5 100644 --- a/lass/2configs/git.nix +++ b/lass/2configs/git.nix @@ -51,7 +51,7 @@ let          nick = config.krebs.build.host.name;          channel = "#retiolum";          server = "cd.retiolum"; -        verbose = config.krebs.build.host.name == "cloudkrebs"; +        verbose = config.krebs.build.host.name == "echelon";        };      };    }; diff --git a/lass/2configs/realwallpaper.nix b/lass/2configs/realwallpaper.nix index f1c8861e1..c69cb1660 100644 --- a/lass/2configs/realwallpaper.nix +++ b/lass/2configs/realwallpaper.nix @@ -1,9 +1,5 @@  { config, ... }:  { -  imports = [ -    ../3modules/realwallpaper.nix -  ]; - -  lass.realwallpaper.enable = true; +  krebs.realwallpaper.enable = true;  } diff --git a/lass/3modules/default.nix b/lass/3modules/default.nix index 9b6211278..9de987bf3 100644 --- a/lass/3modules/default.nix +++ b/lass/3modules/default.nix @@ -3,6 +3,5 @@ _:  {    imports = [      ./xresources.nix -    ./realwallpaper.nix    ];  } diff --git a/lass/5pkgs/default.nix b/lass/5pkgs/default.nix index 6954c6a2c..7427cb620 100644 --- a/lass/5pkgs/default.nix +++ b/lass/5pkgs/default.nix @@ -13,5 +13,4 @@ rec {      ublock = callPackage ./firefoxPlugins/ublock.nix {};      vimperator = callPackage ./firefoxPlugins/vimperator.nix {};    }; -  realwallpaper = callPackage ./realwallpaper.nix {};  } diff --git a/makefu/1systems/pnp.nix b/makefu/1systems/pnp.nix index fdc2f0135..e7ceca60d 100644 --- a/makefu/1systems/pnp.nix +++ b/makefu/1systems/pnp.nix @@ -25,6 +25,7 @@        ../2configs/Reaktor/simpleExtend.nix        ../2configs/Reaktor/random-emoji.nix        ../2configs/Reaktor/titlebot.nix +      ../2configs/Reaktor/shack-correct.nix        ../2configs/exim-retiolum.nix        ../2configs/urlwatch.nix @@ -35,7 +36,7 @@    krebs.Reaktor.debug = true;    krebs.Reaktor.nickname = "Reaktor|bot";    krebs.Reaktor.extraEnviron = { -    REAKTOR_CHANNELS = "#krebs,#binaergewitter"; +    REAKTOR_CHANNELS = "#krebs,#binaergewitter,#shackspace";    };    krebs.build.host = config.krebs.hosts.pnp; diff --git a/makefu/2configs/Reaktor/shack-correct.nix b/makefu/2configs/Reaktor/shack-correct.nix new file mode 100644 index 000000000..8f30807f1 --- /dev/null +++ b/makefu/2configs/Reaktor/shack-correct.nix @@ -0,0 +1,20 @@ +{ config, lib, pkgs, ... }: + +with pkgs; +let +  script = pkgs.substituteAll ( { +    name="shack-correct"; +    isExecutable=true; +    dir = ""; +    src = ./shack-correct.sh; +    }); +in { +  krebs.Reaktor.extraConfig = '' +  public_commands.insert(0,{ +    'capname' : "shack-correct", +    'pattern' : '^(?P<args>.*Shack.*)$$', +    'argv'    : ["${script}"], +    'env'     : {  }}) +  ''; +} + diff --git a/makefu/2configs/Reaktor/shack-correct.sh b/makefu/2configs/Reaktor/shack-correct.sh new file mode 100644 index 000000000..3b4d04f80 --- /dev/null +++ b/makefu/2configs/Reaktor/shack-correct.sh @@ -0,0 +1,6 @@ +#! /bin/sh +set -eu +printf "Sie meinten wohl \"" +echo -n $@ | sed 's/Shack/shack/g' +echo "\"" +echo "${_from}--" diff --git a/makefu/3modules/tinc_graphs.nix b/makefu/3modules/tinc_graphs.nix index 06b3f6263..62d607527 100644 --- a/makefu/3modules/tinc_graphs.nix +++ b/makefu/3modules/tinc_graphs.nix @@ -64,13 +64,11 @@ let      environment.systemPackages = [ pkgs.tinc_graphs];      systemd.timers.tinc_graphs = {        description = "Build Tinc Graphs via via timer"; - +      wantedBy = [ "timers.target"];        timerConfig = cfg.timerConfig;      };      systemd.services.tinc_graphs = {        description = "Build Tinc Graphs"; -      wantedBy = [ "multi-user.target" ]; -      after = [ "network.target" ];        environment = {          EXTERNAL_FOLDER = external_dir;          INTERNAL_FOLDER = internal_dir; | 
