18 lines
297 B
Nix
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;
|
||
|
};
|
||
|
};
|
||
|
}
|