Bauke/dotfiles
Bauke
/
dotfiles
Archived
1
Fork 0
This repository has been archived on 2025-09-03. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.bauke/nix/azedia/programs-services.nix

30 lines
430 B
Nix

# Configuration for programs and services.
{ ... }:
{
programs = {
zsh.enable = true;
};
services = {
avahi = {
enable = true;
nssmdns = true;
publish = {
addresses = true;
domain = true;
enable = true;
};
};
openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
PermitRootLogin = "no";
};
};
};
}