36 lines
961 B
Nix
36 lines
961 B
Nix
{
|
|
config,
|
|
hmUsers,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
psCfg = config.pub-solar;
|
|
in {
|
|
imports = [
|
|
./home.nix
|
|
];
|
|
|
|
config = {
|
|
home-manager.users = {inherit (hmUsers) teutat3s;};
|
|
|
|
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 = "teutat3s";
|
|
fullName = "teutat3s";
|
|
email = "10206665+teutat3s@users.noreply.github.com";
|
|
gpgKeyId = "18DAE600A6BBE705";
|
|
password = "$6$guLp1v0G0TxGThXX$y7YeEcYjFpN6gutLCbvAkqppOVLYZjfo4DxofrMm6a9MIjVoKKaY20UzityJsHbQU4THIFfj8gLWVOjyjL.P2.";
|
|
publicKeys = [
|
|
"ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFro/k4Mgqyh8yV/7Zwjc0dv60ZM7bROBU9JNd99P/4co6fxPt1pJiU/pEz2Dax/HODxgcO+jFZfvPEuLMCeAl0= YubiKey #10593996 PIV Slot 9a"
|
|
];
|
|
};
|
|
|
|
sway.v4l2loopback.enable = false;
|
|
};
|
|
};
|
|
}
|