mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 00:54:46 +00:00
c52aeacf1a
svn path=/nixos/trunk/; revision=26394
12 lines
233 B
Nix
12 lines
233 B
Nix
{ pkgs, ... }:
|
|
|
|
{ users.extraUsers = pkgs.lib.singleton
|
|
{ name = "alice";
|
|
description = "Alice Foobar";
|
|
home = "/home/alice";
|
|
createHome = true;
|
|
useDefaultShell = true;
|
|
password = "foobar";
|
|
};
|
|
}
|