65 lines
1.7 KiB
Nix
65 lines
1.7 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.ragon.user;
|
|
uid = cfg.uid;
|
|
username = cfg.username;
|
|
extraGroups = cfg.extraGroups;
|
|
extraAuthorizedKeys = cfg.extraAuthorizedKeys;
|
|
pubkeys = import ../../data/pubkeys.nix {};
|
|
|
|
in
|
|
{
|
|
options.ragon.user = {
|
|
enable = lib.mkEnableOption "Enables my user.";
|
|
uid = lib.mkOption {
|
|
type = lib.types.nullOr lib.types.int;
|
|
default = 1000;
|
|
};
|
|
username = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "ragon";
|
|
description = "My username for this system.";
|
|
};
|
|
extraGroups = lib.mkOption {
|
|
type = lib.types.listOf lib.types.str;
|
|
default = [ ];
|
|
};
|
|
extraAuthorizedKeys = lib.mkOption {
|
|
type = lib.types.listOf lib.types.str;
|
|
default = [ ];
|
|
description = "Additional authorized keys";
|
|
};
|
|
persistent = {
|
|
homeDir = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "/persistent/home/${username}";
|
|
description = "Location of persistent home files";
|
|
};
|
|
extraFiles = lib.mkOption {
|
|
type = lib.types.listOf lib.types.str;
|
|
default = [ ];
|
|
};
|
|
extraDirectories = lib.mkOption {
|
|
type = lib.types.listOf lib.types.str;
|
|
default = [ ];
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
# Let ~/bin/ be in $PATH
|
|
environment.homeBinInPath = true;
|
|
|
|
# Define my user account
|
|
users.extraUsers.${username} = {
|
|
isNormalUser = true;
|
|
uid = uid;
|
|
extraGroups = [ "wheel" ] ++ extraGroups;
|
|
shell = pkgs.zsh;
|
|
openssh.authorizedKeys.keys = pubkeys.ragon.computers ++ extraAuthorizedKeys;
|
|
passwordFile = config.age.secrets.ragonPasswd.path;
|
|
};
|
|
ragon.agenix.secrets.ragonPasswd = { };
|
|
|
|
};
|
|
}
|