mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-27 10:36:12 +01:00
28 lines
612 B
Nix
28 lines
612 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
nm-enable = config.networking.networkmanager.enable;
|
|
docker-enable = config.virtualisation.docker.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 [])
|
|
++ (if docker-enable then [ "docker" ] else []);
|
|
};
|
|
|
|
groups.main = {
|
|
gid = 1000;
|
|
};
|
|
};
|
|
}
|