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

19 lines
328 B
Nix

{ config, pkgs, lib, sane-lib, ... }:
{
imports = [
./colin.nix
./guest.nix
./root.nix
];
# 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;
};
}