mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
10 lines
171 B
Nix
10 lines
171 B
Nix
{ lib, ... }:
|
|
|
|
{ users.extraUsers = lib.singleton
|
|
{ isNormalUser = true;
|
|
name = "alice";
|
|
description = "Alice Foobar";
|
|
password = "foobar";
|
|
};
|
|
}
|