nixos/modules/users.nix
Jake Hillion a1ff1ba38b
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
downloads: add container to tywin.storage
2023-07-20 23:35:26 +01:00

20 lines
440 B
Nix
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ config, pkgs, lib, ... }:
{
config = {
ids.uids = {
## Defined System Users (see https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/misc/ids.nix)
## Consistent People
jake = 1000;
joseph = 1001;
};
ids.gids = {
## Defined System Groups (see https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/misc/ids.nix)
## Consistent Groups
mediaaccess = 1200;
};
};
}