2021-02-07 23:07:20 +01:00
|
|
|
# User setup
|
2021-03-08 20:00:01 +01:00
|
|
|
{ config, ... }:
|
2021-02-07 23:07:20 +01:00
|
|
|
let
|
|
|
|
my = config.my;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
users.users.blog = {
|
|
|
|
description = "Blog Publisher";
|
|
|
|
isNormalUser = true;
|
|
|
|
group = "nginx";
|
2021-02-08 14:53:02 +01:00
|
|
|
createHome = false; # Messes with permissions
|
2021-02-07 23:07:20 +01:00
|
|
|
home = "/var/www/";
|
|
|
|
openssh.authorizedKeys.keys = [ my.secrets.drone.ssh.publicKey ];
|
|
|
|
};
|
|
|
|
}
|