2021-06-06 13:22:44 +00:00
|
|
|
{
|
2023-01-28 20:49:10 +00:00
|
|
|
config,
|
|
|
|
hmUsers,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
psCfg = config.pub-solar;
|
|
|
|
in {
|
2021-06-06 13:22:44 +00:00
|
|
|
imports = [
|
|
|
|
./home.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
config = {
|
2023-01-28 20:49:10 +00:00
|
|
|
home-manager.users = {inherit (hmUsers) teutat3s;};
|
2021-09-21 20:27:53 +00:00
|
|
|
|
2021-06-06 13:22:44 +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 = "teutat3s";
|
|
|
|
fullName = "teutat3s";
|
|
|
|
email = "10206665+teutat3s@users.noreply.github.com";
|
|
|
|
gpgKeyId = "18DAE600A6BBE705";
|
|
|
|
password = "$6$guLp1v0G0TxGThXX$y7YeEcYjFpN6gutLCbvAkqppOVLYZjfo4DxofrMm6a9MIjVoKKaY20UzityJsHbQU4THIFfj8gLWVOjyjL.P2.";
|
|
|
|
};
|
|
|
|
|
|
|
|
sway.v4l2loopback.enable = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|