nixfleet/profiles/sshd/default.nix
Andrea Ciceri 6791cb51a2
Various
- firewall rule for VNC for `pc` host
- `go-translate` emacs package with custom bindings
- `magit-delta` to improve diffs readability with `magit` through
  `delta`
- `fira-code-mode` enabled only in `prog-mode`
- `mpv` is spawned by `qutebrowser` without waiting for video being
  loaded
2022-04-30 14:07:16 +02:00

9 lines
144 B
Nix

{
services.openssh = {
enable = true;
permitRootLogin = "yes";
forwardX11 = true;
};
programs.ssh.setXAuthLocation = true;
}