diff options
author | lassulus <lass@lassul.us> | 2017-05-22 17:22:28 +0200 |
---|---|---|
committer | lassulus <lass@lassul.us> | 2017-05-22 17:22:28 +0200 |
commit | a5390438dc08684a543e7260ff3377001c8bd5b0 (patch) | |
tree | b42dca1ba600cdbc024f4900c7722d4837340a69 | |
parent | 6ff1f811366215b82e892cb75dd9419a6de06f4d (diff) |
l 2 retiolum: add tinc to systemPackages
-rw-r--r-- | lass/2configs/retiolum.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lass/2configs/retiolum.nix b/lass/2configs/retiolum.nix index 7f1b36c96..e7779f53e 100644 --- a/lass/2configs/retiolum.nix +++ b/lass/2configs/retiolum.nix @@ -1,4 +1,4 @@ -{ ... }: +{ pkgs, ... }: { @@ -25,4 +25,8 @@ nixpkgs.config.packageOverrides = pkgs: { tinc = pkgs.tinc_pre; }; + + environment.systemPackages = [ + pkgs.tinc + ]; } |