mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 15:00:32 +01:00
Mitigate CVE-2024-6387 until merged upstream; Add justfile
This commit is contained in:
parent
05c70d976d
commit
4a285e0444
|
@ -28,6 +28,8 @@ in {
|
||||||
pkgs.iftop
|
pkgs.iftop
|
||||||
pkgs.ranger
|
pkgs.ranger
|
||||||
|
|
||||||
|
pkgs.just
|
||||||
|
|
||||||
pkgs.catppuccin-kde
|
pkgs.catppuccin-kde
|
||||||
|
|
||||||
pkgs.anki
|
pkgs.anki
|
||||||
|
|
|
@ -161,7 +161,10 @@ with lib; {
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
users.users.root.openssh.authorizedKeys.keys = [
|
users.users.root.openssh.authorizedKeys.keys = [
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN7UkcmSVo+SeB5Obevz3mf3UHruYxn0UHUzoOs2gDBy xqtc@asmodeus"
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJTLJqIVwnqFO64rnc66d234TFOdFXpDS9fJUA4/f4in xqtc@alastor"
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN7UkcmSVo+SeB5Obevz3mf3UHruYxn0UHUzoOs2gDBy xqtc@asmodeus"
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPf3w5bHAssHthg9SPXVpG4w9v8m16X/0J3bjg08P6EA xqtc@seraphim"
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJYa+LoHGGvu12iBufUcr3GD8tsq4LuJdwLjaDkTr0SL xqtc@lilith"
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.bash.blesh.enable = true;
|
programs.bash.blesh.enable = true;
|
||||||
|
|
|
@ -7,6 +7,8 @@
|
||||||
# imports = [./wireguard.nix];
|
# imports = [./wireguard.nix];
|
||||||
|
|
||||||
services.openssh.settings.PasswordAuthentication = false;
|
services.openssh.settings.PasswordAuthentication = false;
|
||||||
|
# Mitigates https://www.cve.org/CVERecord?id=CVE-2024-6387
|
||||||
|
services.openssh.settings.LoginGraceTime = 0;
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
interfaces = {
|
interfaces = {
|
||||||
|
|
Loading…
Reference in a new issue