nixos-config/machines/nunotaba/configuration.nix
Simon Bruder 7b836dd65b
Drastically lower restic upload limit
Welcome in the year 2023, where it apparently is acceptable to offer
internet connectivity with not even 5 Mbit/s upload speed.
2023-10-04 23:42:00 +02:00

24 lines
376 B
Nix

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