Files
panoptes-nix/configuration.nix
2025-05-27 00:11:39 -05:00

21 lines
444 B
Nix

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