36 lines
1 KiB
Nix
36 lines
1 KiB
Nix
{
|
|
settings,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./boot.nix
|
|
./sops-conf.nix
|
|
../../modules/presets/basic.nix
|
|
../../modules/gaming.nix
|
|
../../modules/virtualization.nix
|
|
../../modules/wine.nix
|
|
../../modules/wireguard.nix
|
|
../../modules/airplay.nix
|
|
# ../../modules/battery-life.nix
|
|
];
|
|
|
|
home-manager = {
|
|
users."${settings.personal.username}" = {
|
|
imports = [
|
|
../../../home/presets/basic.nix
|
|
(import ../../../home/user/bitwarden.nix {
|
|
email = "danny@dn-server.net.dn";
|
|
baseUrl = "https://bitwarden.net.dn";
|
|
})
|
|
];
|
|
};
|
|
};
|
|
|
|
users.users."${settings.personal.username}".openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILSHkPa6vmr5WBPXAazY16+Ph1Mqv9E24uLIf32oC2oH danny@phone.dn"
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJSAOufpee7f8D8ONIIGU3qsN+8+DGO7BfZnEOTYqtQ5 danny@pre7780.dn"
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMj/LeB3i/vca3YwGNpAjf922FgiY2svro48fUSQAjOv Shortcuts on :D"
|
|
];
|
|
}
|