Files
panoptes-nix/configuration.nix
John Lancaster 2408733cc3 added vscode fhs
2025-05-26 23:36:21 -05:00

27 lines
490 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
vscode.fhs
];
security.sudo-rs = {
enable = true;
execWheelOnly = false;
wheelNeedsPassword = false; # allows sudo without password for those in the wheel group
};
};
}