4b9cab40cb
According to https://github.com/nix-community/home-manager/issues/2161 there might be a better formal distinction between host-spaced and portable arch-spaced hm users in the future.
13 lines
230 B
Nix
13 lines
230 B
Nix
{ hmUsers, ... }:
|
|
{
|
|
home-manager.users = { inherit (hmUsers) nixos; };
|
|
|
|
users.users.nixos = {
|
|
uid = 1000;
|
|
password = "nixos";
|
|
description = "default";
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" ];
|
|
};
|
|
}
|