nixconfig/modules/nixos/oracle-proxy/services.nix
2025-12-26 01:01:34 -08:00

29 lines
390 B
Nix

{
config,
pkgs,
...
}:
{
virtualisation.docker.enable = true;
programs.nh = {
enable = true;
clean.enable = true;
clean.extraArgs = "--keep-since 7d --keep 10";
flake = "/home/death916/nixconfig/";
};
environment.systemPackages = with pkgs; [
git
vim
htop
tailscale
rsync
multipath-tools
btop
wget
unzip
manix
];
}