forked from pub-solar/os
e078e7a229
Keep the README.md lean and use DOC.md for more detailed explanations. While revising user documentation, a default `nixos` user profile was created, which serves as a goood base example.
17 lines
294 B
Nix
17 lines
294 B
Nix
{
|
|
imports = [ ../../profiles/develop ];
|
|
|
|
users.users.nixos = {
|
|
uid = 1000;
|
|
password = "nixos";
|
|
description = "default";
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" ];
|
|
};
|
|
|
|
# to avoid zsh startup message
|
|
home-manager.users.nrd.home.file.".zshrc" = ''
|
|
#
|
|
'';
|
|
}
|