forked from pub-solar/os
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" = ''
|
||
|
#
|
||
|
'';
|
||
|
}
|