Files
nixos-haus/hosts/box/packages.nix
2026-01-11 16:28:29 +02:00

24 lines
300 B
Nix

{
config,
pkgs,
...
}: {
imports = [
../../modules/userapps/utils.nix
];
environment.systemPackages = with pkgs; [
firefox-esr
shortwave
kate
rustup
]
services.openssh.enable = true;
security.sudo = {
enable = true;
wheelNeedsPassword = false;
};
}