stockholm/lass/2configs/bitcoin.nix
2015-07-28 20:28:21 +02:00

18 lines
297 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
electrum
];
users.extraUsers = {
bitcoin = {
name = "bitcoin";
description = "user for bitcoin stuff";
home = "/home/bitcoin";
useDefaultShell = true;
createHome = true;
};
};
}