all repos — nixfiles @ 7cff825c1df5494c6c070ad34f5288b9b7786cfc

System and user configuration, managed by nix and home-manager

Add Nitrokey/GnuPG module
Alan Pearce alan@alanpearce.eu
Sat, 09 Sep 2017 14:43:09 +0200
commit

7cff825c1df5494c6c070ad34f5288b9b7786cfc

parent

3bea12cd01499c02b0f5d8b33b658b529ebf9d1e

2 files changed, 25 insertions(+), 0 deletions(-)

jump to
A modules/nitrokey.nix
@@ -0,0 +1,24 @@+{ config, nixpkgs, ... }:
+
+let
+  pkgsUnstable = import <nixos-unstable> {};
+  # pkgsUnstable = pkgs;
+in
+{ services.pcscd.enable = true;
+
+  services.tor = {
+    enable = true;
+    client = {
+      enable = true;
+      socksListenAddress = "9050 IPv6Traffic";
+    };
+    torsocks = {
+      enable = true;
+    };
+  };
+
+  environment.systemPackages = [
+    pkgsUnstable.gnupg
+    pkgsUnstable.nitrokey-app
+  ];
+}
M satoshipad.nixsatoshipad.nix
@@ -10,6 +10,7 @@ ./modules/audio.nix     ./modules/adb.nix
     ./modules/syncthing.nix
     ./modules/hidpi.nix
+    ./modules/nitrokey.nix
   ];
 
   networking.hostName = "satoshipad";