Files
panoptes-nix/configuration.nix
John Lancaster 80cc7131e2 a bit of reorg
2025-05-26 23:26:43 -05:00

26 lines
473 B
Nix

{
pkgs,
config,
systemSettings,
userSettings,
...
}: {
config = {
services.openssh.enable = true;
services.avahi = { enable = true; nssmdns4 = true; };
environment.systemPackages = with pkgs; [
home-manager
bash
busybox
git
eza
];
security.sudo-rs = {
enable = true;
execWheelOnly = false;
wheelNeedsPassword = false; # allows sudo without password for those in the wheel group
};
};
}