15 lines
296 B
Nix
15 lines
296 B
Nix
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../roles
|
|
../../roles/hardware.nix
|
|
./network.nix
|
|
../../modules/borgbackup.nix
|
|
];
|
|
|
|
services.mathebau-borgbackup.enable = true;
|
|
|
|
# System configuration here
|
|
networking.hostName = "bragi";
|
|
system.stateVersion = "23.11";
|
|
}
|