Jake Hillion
fc599096b4
All checks were successful
continuous-integration/drone/push Build is passing
Chia was pulled from the nixpkgs tree (https://github.com/NixOS/nixpkgs/pull/270254) and the alternative provided, `chia.nix`, still hasn't landed v2 (https://github.com/0xbbjubjub/chia.nix). Switch to a more stable container release even if it's heavier than a nixpkg. Hopefully at some point in the future the Nix build will stabilise. Latest docker package selected from https://github.com/Chia-Network/chia-docker/pkgs/container/chia - electing to do update this manually for determinism.
24 lines
514 B
Nix
24 lines
514 B
Nix
{ config, pkgs, lib, ... }:
|
||
|
||
{
|
||
config = {
|
||
ids.uids = {
|
||
## Defined System Users (see https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/misc/ids.nix)
|
||
unifi = 183;
|
||
chia = 185;
|
||
|
||
## Consistent People
|
||
jake = 1000;
|
||
joseph = 1001;
|
||
};
|
||
ids.gids = {
|
||
## Defined System Groups (see https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/misc/ids.nix)
|
||
unifi = 183;
|
||
chia = 185;
|
||
|
||
## Consistent Groups
|
||
mediaaccess = 1200;
|
||
};
|
||
};
|
||
}
|