nix-config/machines/porthos/users.nix

16 lines
318 B
Nix
Raw Normal View History

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