2022-06-09 17:38:24 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
|
|
|
../../modules
|
|
|
|
../../users/simon
|
|
|
|
];
|
|
|
|
|
|
|
|
sbruder = {
|
|
|
|
gui.enable = true;
|
2022-08-25 23:21:35 +02:00
|
|
|
restic.system = {
|
|
|
|
enable = true;
|
2023-10-07 22:32:10 +02:00
|
|
|
qos = true;
|
2022-08-25 23:21:35 +02:00
|
|
|
};
|
2022-06-09 17:38:24 +02:00
|
|
|
unfree.allowSoftware = true;
|
|
|
|
wireguard.home.enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
networking.hostName = "nunotaba";
|
|
|
|
|
|
|
|
system.stateVersion = "22.05";
|
|
|
|
}
|