mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
13 lines
347 B
Nix
13 lines
347 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
users = {
|
|
mutableUsers = false;
|
|
users.swarsel = {
|
|
isNormalUser = true;
|
|
description = "Leon S";
|
|
hashedPasswordFile = config.sops.secrets.swarseluser.path;
|
|
extraGroups = [ "networkmanager" "wheel" "lp" "audio" "video" "vboxusers" "scanner" ];
|
|
packages = with pkgs; [ ];
|
|
};
|
|
};
|
|
}
|