nix/hosts/arr/default.nix

34 lines
455 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;
};
networking = {
nameservers = [ "192.168.1.2" ];
};
system.stateVersion = "24.05";
}