Add server specific user

This commit is contained in:
Benjamin Bädorf 2022-08-13 18:53:50 +02:00
parent 030e5c0058
commit f764cfa36d
No known key found for this signature in database
GPG key ID: 4406E80E13CD656C
2 changed files with 25 additions and 1 deletions

View file

@ -128,7 +128,8 @@
biolimo = b12f ++ [ graphical ];
chocolatebar = b12f ++ [ graphical virtualisation ];
droppie = b12f ++ [ ];
yule = pubsolaros ++ [ users.yule ];
droppie = yule ++ [ ];
};
};
};

23
users/yule/default.nix Normal file
View file

@ -0,0 +1,23 @@
{ 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";
};
};
};
}