nix-config/lib/users.nix

16 lines
269 B
Nix
Raw Normal View History

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