nixos/modules/ids.nix

26 lines
552 B
Nix
Raw Permalink Normal View History

2024-02-07 21:54:26 +00:00
{ 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;
2024-05-12 11:33:08 +01:00
gitea = 186;
2024-02-07 21:54:26 +00:00
## 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;
2024-05-12 11:33:08 +01:00
gitea = 186;
2024-02-07 21:54:26 +00:00
## Consistent Groups
mediaaccess = 1200;
};
};
}