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
|
@ -6,8 +6,10 @@
|
||||||
services.xserver.layout = "us-fruchti";
|
services.xserver.layout = "us-fruchti";
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
passwordAuthentication = false;
|
settings = {
|
||||||
kbdInteractiveAuthentication = false;
|
PasswordAuthentication = false;
|
||||||
|
KbdInteractiveAuthentication = false;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
nix.gc = {
|
nix.gc = {
|
||||||
|
|
|
@ -3,6 +3,8 @@ let
|
||||||
definedInPersonalDotNix = lib.mkDefault (throw "Configuration option missing from personal.nix");
|
definedInPersonalDotNix = lib.mkDefault (throw "Configuration option missing from personal.nix");
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
programs.fish.enable = true;
|
||||||
|
|
||||||
users.users = {
|
users.users = {
|
||||||
fruchti = {
|
fruchti = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
|
|
|
@ -37,6 +37,8 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.gnupg.agent.pinentryFlavor = "gnome3";
|
programs.gnupg.agent.pinentryFlavor = "gnome3";
|
||||||
|
services.pcscd.enable = true;
|
||||||
|
services.dbus.packages = [ pkgs.gcr ];
|
||||||
|
|
||||||
environment.gnome.excludePackages = (with pkgs; [
|
environment.gnome.excludePackages = (with pkgs; [
|
||||||
gnome-photos
|
gnome-photos
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
hash = "sha256-/vYon0XUIuMAaaaRNehzMspKMHWp0tJm8JubRt1KmZU=";
|
hash = "sha256-/vYon0XUIuMAaaaRNehzMspKMHWp0tJm8JubRt1KmZU=";
|
||||||
};
|
};
|
||||||
configureFlags = [ "--sysconfdir=/var/lib/burp" ];
|
configureFlags = [ "--sysconfdir=/var/lib/burp" ];
|
||||||
buildInputs = with super; [ librsync ncurses openssl_1_1 zlib uthash ];
|
|
||||||
patches = [];
|
patches = [];
|
||||||
}));
|
}));
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue