L-Nafaryus
a4d8f5232e
Some checks failed
nix / check (push) Failing after 1m15s
flake: fix name conventions flake: configurations -> lib.preconfiguredModules flake.packages: rework platform dependency with convient module and evaluator `lib.collectPackages` packages.bonfire-docs: convient evaluators `nixosModulesDoc` and `packagesDoc` new: packages.postgresql: container image new: packages.redis: container image remove: packages.lego: needed dns provider was added to lego and nixpkgs packages.netgen: broken
21 lines
445 B
Nix
21 lines
445 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
# Users
|
|
users.users.root.hashedPasswordFile = config.sops.secrets."users/root".path;
|
|
|
|
users.users.l-nafaryus = {
|
|
isNormalUser = true;
|
|
description = "L-Nafaryus";
|
|
extraGroups = ["networkmanager" "wheel"];
|
|
group = "users";
|
|
uid = 1000;
|
|
shell = pkgs.fish;
|
|
hashedPasswordFile = config.sops.secrets."users/l-nafaryus".path;
|
|
};
|
|
|
|
users.users.nginx.extraGroups = ["acme" "papermc"];
|
|
}
|