pantheon/modules/nixos/system/users.nix

18 lines
308 B
Nix

{ config, lib, pkgs, ... }:
{
config = lib.mkMerge [
{
users.users."${config.system.mainUser}" = {
isNormalUser = true;
initialPassword = "1";
extraGroups = [
"wheel"
];
packages = with pkgs; [
git
neovim
];
};
}
];
}