mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 10:13:14 -06:00
33 lines
626 B
Nix
33 lines
626 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (lib) mkOption mkIf types;
|
|
cfg = config.users.defaultUser;
|
|
in {
|
|
options.users.defaultUser = mkOption {
|
|
default = true;
|
|
type = types.bool;
|
|
description = ''
|
|
include default user "daylin"
|
|
'';
|
|
};
|
|
|
|
config = mkIf cfg {
|
|
users.users.daylin = {
|
|
isNormalUser = true;
|
|
|
|
shell = pkgs.zsh;
|
|
extraGroups = [
|
|
"wheel" # sudo
|
|
"docker"
|
|
];
|
|
initialPassword = "nix";
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKkezPIhB+QW37G15ZV3bewydpyEcNlYxfHLlzuk3PH9"
|
|
];
|
|
};
|
|
};
|
|
}
|