mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
updated passwords
added ssh pub keys
This commit is contained in:
parent
ab57d203e8
commit
f87aa20bd2
6 changed files with 43 additions and 17 deletions
|
|
@ -46,7 +46,9 @@ inputs: {
|
|||
inputs.suckless.packages.${pkgs.system}.st
|
||||
];
|
||||
#set webcord theme
|
||||
systemd.tmpfiles.rules = ["L+ /home/gerg/.config/WebCord/Themes/black - - - - ${self}/misc/black.theme.css"];
|
||||
systemd.tmpfiles.rules = let
|
||||
theme = pkgs.writeText "black" (builtins.readFile "${self}/misc/black.theme.css");
|
||||
in ["L+ /home/gerg/.config/WebCord/Themes/black - - - - ${theme}"];
|
||||
|
||||
networking = {
|
||||
hostName = "gerg-desktop";
|
||||
|
|
@ -67,9 +69,10 @@ inputs: {
|
|||
}
|
||||
];
|
||||
ipv6.addresses = [
|
||||
# {
|
||||
# prefixLength = 64;
|
||||
# }
|
||||
{
|
||||
address = "2605:59c8:252e:500:da5e:d3ff:fee5:4790";
|
||||
prefixLength = 64;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
@ -85,11 +88,19 @@ inputs: {
|
|||
uid = 1000;
|
||||
isNormalUser = true;
|
||||
extraGroups = ["wheel" "audio"];
|
||||
openssh.authorizedKeys.keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAuO/3IF+AjH8QjW4DAUV7mjlp2Mryd+1UnpAUofS2yA gerg@gerg-phone"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILpYY2uw0OH1Re+3BkYFlxn0O/D8ryqByJB/ljefooNc gerg@gerg-windows"
|
||||
];
|
||||
initialHashedPassword = "$6$hgiDFHEMVEA39Snj$Huxf2a/yd/gSO2ZwntxI5Z65c1kCf35lvbkA61knP5i5NLPuIy4cybBBv9lnd24LVR9sfi9Tss96VQdsGCQhq1";
|
||||
};
|
||||
"root" = {
|
||||
uid = 0;
|
||||
home = "/root";
|
||||
openssh.authorizedKeys.keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAuO/3IF+AjH8QjW4DAUV7mjlp2Mryd+1UnpAUofS2yA gerg@gerg-phone"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILpYY2uw0OH1Re+3BkYFlxn0O/D8ryqByJB/ljefooNc gerg@gerg-windows"
|
||||
];
|
||||
initialHashedPassword = "$6$KV00qSRKyx1hpZjX$kwzWN4UuQxHSFwA4vYtRTcYecQyR.Qelvvcr90ZfZ4y.LISUcx2PDHH9/7REwsoAHD./KlAnwlsm1hxeLoGpl/";
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue