nixos-config/machines/nunotaba/configuration.nix
Simon Bruder e31c264c92
restic: Do not limit upload by default
This allows servers that have a fast internet connection to complete
their backup in seconds instead of minutes.
2022-08-25 23:22:17 +02:00

24 lines
377 B
Nix

{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
../../modules
../../users/simon
];
sbruder = {
gui.enable = true;
restic.system = {
enable = true;
uploadLimit = 1500;
};
unfree.allowSoftware = true;
wireguard.home.enable = true;
};
networking.hostName = "nunotaba";
system.stateVersion = "22.05";
}