dotfiles/nixos/users/main.nix

25 lines
470 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
let
nm-enable = config.networking.networkmanager.enable;
mkIf = pkgs.lib.mkIf;
in {
users = {
mutableUsers = false;
users.main = {
isNormalUser = true;
home = "/home/main";
hashedPassword = "<redacted>";
description = "main";
uid = 1000;
extraGroups = [ "wheel" "audio" ] ++ (if nm-enable then [ "networkmanager" ] else []);
};
groups.main = {
gid = 1000;
};
};
}