os/users/yule/default.nix

24 lines
652 B
Nix

{ config, hmUsers, pkgs, lib, ... }:
let
psCfg = config.pub-solar;
in
{
config = {
home-manager.users = { inherit (hmUsers) yule; };
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 = "yule";
description = "b12f";
password = "$6$LO2YoaHwuRQhUoSz$iHw9avM887eJg9cIty2nmG4Ibkol3YpviEhYpivVQP31VrnihFz/6LyugxD7X4VmXx9nxvcYIZnN90rlGxwjT.";
fullName = "Benjamin Bädorf";
email = "hello@benjaminbaedorf.eu";
gpgKeyId = "4406E80E13CD656C";
};
};
};
}