2021-05-30 19:10:28 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
let
|
|
|
|
psCfg = config.pub-solar;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./home.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
users = {
|
|
|
|
mutableUsers = false;
|
|
|
|
|
|
|
|
users = with pkgs; pkgs.lib.setAttrByPath [ psCfg.user.name ] {
|
|
|
|
# Indicates whether this is an account for a “real” user.
|
|
|
|
# This automatically sets group to users, createHome to true,
|
|
|
|
# home to /home/username, useDefaultShell to true, and isSystemUser to false.
|
|
|
|
isNormalUser = true;
|
2021-11-17 11:05:50 +00:00
|
|
|
description = psCfg.user.description;
|
2022-08-10 20:42:14 +00:00
|
|
|
extraGroups = [
|
|
|
|
"input"
|
|
|
|
"lp"
|
2022-08-13 15:43:58 +00:00
|
|
|
"networkmanager"
|
2022-08-10 20:42:14 +00:00
|
|
|
"scanner"
|
2022-08-13 15:43:58 +00:00
|
|
|
"video"
|
|
|
|
"wheel"
|
2022-08-10 20:42:14 +00:00
|
|
|
];
|
2021-05-30 19:10:28 +00:00
|
|
|
initialHashedPassword = if psCfg.user.password != null then psCfg.user.password else "";
|
|
|
|
shell = pkgs.zsh;
|
2022-04-30 18:17:25 +00:00
|
|
|
openssh.authorizedKeys.keyFiles = if psCfg.user.publicKeys != null then psCfg.user.publicKeys else [ ];
|
2021-05-30 19:10:28 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|