15 lines
204 B
Nix
15 lines
204 B
Nix
#
|
|
# User configuration
|
|
#
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
users.users.salt = {
|
|
isNormalUser = true;
|
|
description = "Salt";
|
|
extraGroups = [ "wheel" ];
|
|
shell = pkgs.bash;
|
|
home = "/home/salt";
|
|
};
|
|
}
|