nixos-config/machines/sayuri/configuration.nix

30 lines
473 B
Nix
Raw Normal View History

2020-10-17 23:18:22 +02:00
{ config, pkgs, ... }:
{
2020-12-05 16:05:26 +01:00
imports = [
./hardware-configuration.nix
../../modules
../../users/simon
];
2020-10-17 23:18:22 +02:00
2020-12-05 13:48:06 +01:00
sbruder = {
2020-12-05 16:00:34 +01:00
cpu.intel.enable = true;
2020-12-05 15:57:23 +01:00
gpu.amd.enable = true;
gui.enable = true;
2020-12-05 15:37:44 +01:00
libvirt.enable = true;
restic = {
enable = true;
extraPaths = [
"/data"
];
};
2020-12-05 15:33:36 +01:00
ssd.enable = true;
2020-12-05 14:39:36 +01:00
wireguard.home = {
enable = true;
address = "10.80.0.5";
};
2020-12-05 13:48:06 +01:00
};
2020-10-17 23:18:22 +02:00
networking.hostName = "sayuri";
}