nix-config/lib/users/k-ot.nix

11 lines
212 B
Nix

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