nix/hosts/arr/default.nix
2024-10-07 22:02:52 +02:00

30 lines
395 B
Nix

{
config,
pkgs,
lib,
...
}:
{
my = {
utils.commons.enable = true;
services.media-mgr = {
programs.enable = true;
};
virtualisation = {
proxmox.enable = true;
};
};
time.timeZone = "Europe/Rome";
# Extra packages
environment.systemPackages = with pkgs; [ ];
services = {
openssh.enable = true;
};
system.stateVersion = "24.05";
}