Files
2026-05-03 00:41:36 -05:00

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";
};
}