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

11 lines
212 B
Nix
Raw Normal View History

{ pkgs, ... }: {
2019-07-02 21:11:32 +02:00
users.users.k-ot = {
packages = with pkgs; [ screen tmux ];
2019-07-02 21:11:32 +02:00
createHome = true;
isNormalUser = true;
uid = 1000;
extraGroups = [ "audio" ];
2019-07-02 21:11:32 +02:00
password = "k-otk-ot";
};
}