Add Nitrokey/GnuPG module
Alan Pearce alan@alanpearce.eu
Sat, 09 Sep 2017 14:43:09 +0200
2 files changed, 25 insertions(+), 0 deletions(-)
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.nix → satoshipad.nix
@@ -10,6 +10,7 @@ ./modules/audio.nix ./modules/adb.nix ./modules/syncthing.nix ./modules/hidpi.nix + ./modules/nitrokey.nix ]; networking.hostName = "satoshipad";