dnssec, gpg-agent
This commit is contained in:
parent
c27ca8a729
commit
f23829ff43
@ -64,6 +64,16 @@
|
||||
]);
|
||||
};
|
||||
|
||||
home-manager.users.illustris = { ... }: {
|
||||
home.stateVersion = "23.05";
|
||||
services.gpg-agent = {
|
||||
enable = true;
|
||||
defaultCacheTtl = 60*60*12;
|
||||
defaultCacheTtlSsh = 60*60*12;
|
||||
extraConfig = "auto-expand-secmem";
|
||||
};
|
||||
};
|
||||
|
||||
# for ZFS
|
||||
networking.hostId = "f86b2fa7";
|
||||
|
||||
@ -112,11 +122,11 @@
|
||||
gnupg.agent = {
|
||||
enable = true;
|
||||
pinentryFlavor = "curses";
|
||||
enableSSHSupport = true;
|
||||
};
|
||||
|
||||
mosh.enable = true;
|
||||
mtr.enable = true;
|
||||
ssh.startAgent = true;
|
||||
};
|
||||
|
||||
security.sudo.wheelNeedsPassword = false;
|
||||
@ -130,7 +140,6 @@
|
||||
settings.X11Forwarding = true;
|
||||
};
|
||||
qemuGuest.enable = true;
|
||||
resolved.enable = true;
|
||||
udev = {
|
||||
# TODO: check if still needed
|
||||
extraRules = ''
|
||||
@ -150,7 +159,7 @@
|
||||
};
|
||||
in {
|
||||
illustris = {
|
||||
extraGroups = [ "adb" "docker" "libvirtd" "tty" "wheel" ];
|
||||
extraGroups = [ "adb" "docker" "libvirtd" "plugdev" "tty" "wheel" ];
|
||||
isNormalUser = true;
|
||||
openssh.authorizedKeys.keyFiles = [ ghKeys ];
|
||||
};
|
||||
|
||||
@ -5,5 +5,12 @@
|
||||
hostName = "desktop";
|
||||
networkmanager.enable = true;
|
||||
};
|
||||
services.zerotierone.enable = true;
|
||||
services = {
|
||||
resolved = {
|
||||
enable = true;
|
||||
# git.sr.ht fails to resolve with dnssec
|
||||
dnssec = "false";
|
||||
};
|
||||
zerotierone.enable = true;
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user