29 lines
716 B
Nix
29 lines
716 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.";
|
|
};
|
|
|
|
sway.v4l2loopback.enable = false;
|
|
};
|
|
};
|
|
}
|