nix-files/hosts/common/users/default.nix

21 lines
356 B
Nix
Raw Normal View History

{ config, pkgs, lib, sane-lib, ... }:
{
2023-06-28 03:34:15 +00:00
imports = [
./colin.nix
./guest.nix
2023-07-13 06:48:33 +00:00
./root.nix
2023-06-28 03:34:15 +00:00
];
users.groups.media = {};
2023-06-28 03:34:15 +00:00
# Users are exactly these specified here;
# old ones will be deleted (from /etc/passwd, etc) upon upgrade.
users.mutableUsers = false;
security.sudo = {
enable = true;
wheelNeedsPassword = false;
2022-07-31 18:35:15 +00:00
};
}