nix-config/lib/users.nix

14 行
227 B
Nix

{ pkgs, ... }:
{
users.users.k-ot = {
packages = with pkgs;
[ screen tmux ];
createHome = true;
isNormalUser = true;
uid = 1000;
extraGroups = [ "wheel" "audio" ];
password = "k-otk-ot";
};
}