Simon Bruder
7b836dd65b
Welcome in the year 2023, where it apparently is acceptable to offer internet connectivity with not even 5 Mbit/s upload speed.
24 lines
376 B
Nix
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";
|
|
}
|