os/profiles/base-user/default.nix
Hendrik Sokolowski 0daf30fe09
All checks were successful
continuous-integration/drone/push Build is passing
add 001_momo_koeln
2023-03-07 00:48:42 +01:00

45 lines
1 KiB
Nix

{
config,
pkgs,
lib,
...
}: let
psCfg = config.pub-solar;
in {
imports = [
./home.nix
];
users = {
mutableUsers = false;
groups."${psCfg.user.name}" = {};
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;
group = "${psCfg.user.name}";
description = psCfg.user.description;
extraGroups = [
"wheel"
"input"
"networkmanager"
"lp"
"scanner"
];
initialHashedPassword =
if psCfg.user.password != null
then psCfg.user.password
else "";
shell = pkgs.zsh;
openssh.authorizedKeys.keys =
if psCfg.user.publicKeys != null
then psCfg.user.publicKeys
else [];
};
};
}