summaryrefslogtreecommitdiffstats
path: root/lass/2configs/bitcoin.nix
blob: d3bccbf5c59abe635fd5597448abba8e8842d159 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, pkgs, ... }:

{
  environment.systemPackages = with pkgs; [
    electrum
  ];

  users.extraUsers = {
    bitcoin = {
      name = "bitcoin";
      description = "user for bitcoin stuff";
      home = "/home/bitcoin";
      useDefaultShell = true;
      createHome = true;
    };
  };
}