diff options
author | jeschli <jeschli@gmail.com> | 2017-12-06 16:41:08 +0000 |
---|---|---|
committer | jeschli <jeschli@gmail.com> | 2017-12-06 16:43:45 +0000 |
commit | 64e0ccac92b6725a4eb1e5ef06782c07f20e44dd (patch) | |
tree | dc11b66a40eab260188b48101834f6a2b03aff8a /jeschli/2configs/retiolum.nix | |
parent | a19df91320c617beb41130f467ab87170bf3245a (diff) |
jeschli:+ retiolum, +lass vim
Diffstat (limited to 'jeschli/2configs/retiolum.nix')
-rw-r--r-- | jeschli/2configs/retiolum.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/jeschli/2configs/retiolum.nix b/jeschli/2configs/retiolum.nix new file mode 100644 index 000000000..403300b30 --- /dev/null +++ b/jeschli/2configs/retiolum.nix @@ -0,0 +1,22 @@ +{ config, pkgs, ... }: + +{ + + krebs.tinc.retiolum = { + enable = true; + connectTo = [ + "prism" + "gum" + "ni" + "dishfire" + ]; + }; + + nixpkgs.config.packageOverrides = pkgs: { + tinc = pkgs.tinc_pre; + }; + + environment.systemPackages = [ + pkgs.tinc + ]; +} |