Make necessary changes for 23.05
- Explicitly enable fish - No longer use OpenSSL 1.1 for BURP (decryption now seems to work fine with current OpenSSL) - Move sshd settings to `settings`
This commit is contained in:
parent
ef4ad4da58
commit
d2daab08a1
4 changed files with 8 additions and 3 deletions
|
@ -6,8 +6,10 @@
|
|||
services.xserver.layout = "us-fruchti";
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
passwordAuthentication = false;
|
||||
kbdInteractiveAuthentication = false;
|
||||
settings = {
|
||||
PasswordAuthentication = false;
|
||||
KbdInteractiveAuthentication = false;
|
||||
};
|
||||
};
|
||||
|
||||
nix.gc = {
|
||||
|
|
|
@ -3,6 +3,8 @@ let
|
|||
definedInPersonalDotNix = lib.mkDefault (throw "Configuration option missing from personal.nix");
|
||||
in
|
||||
{
|
||||
programs.fish.enable = true;
|
||||
|
||||
users.users = {
|
||||
fruchti = {
|
||||
isNormalUser = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue