pub-solar-os/users/ben/default.nix

40 lines
925 B
Nix
Raw Normal View History

2021-09-21 20:21:29 +00:00
{ config, hmUsers, pkgs, lib, ... }:
2021-05-30 19:33:09 +00:00
let
psCfg = config.pub-solar;
in
{
imports = [
./home.nix
];
config = {
2021-09-21 20:21:29 +00:00
home-manager.users = { inherit (hmUsers) ben; };
2021-05-30 19:33:09 +00:00
pub-solar = {
# These are your personal settings
# The only required settings are `name` and `password`,
# The rest is used for programs like git
user = {
name = "ben";
2021-11-17 18:12:41 +00:00
description = "b12f";
2021-05-30 19:33:09 +00:00
password = "$6$LO2YoaHwuRQhUoSz$iHw9avM887eJg9cIty2nmG4Ibkol3YpviEhYpivVQP31VrnihFz/6LyugxD7X4VmXx9nxvcYIZnN90rlGxwjT.";
fullName = "Benjamin Bädorf";
email = "hello@benjaminbaedorf.eu";
gpgKeyId = "4406E80E13CD656C";
};
2022-02-14 09:50:34 +00:00
paperless.enable = true;
2021-05-30 19:33:09 +00:00
email.enable = true;
uhk.enable = true;
};
networking.hosts = {
"127.0.0.1" = [
"openproject.local"
"saas-1.openproject.local"
"transmission.local"
];
};
};
}