nixos-config/machines/nunotaba/configuration.nix

36 lines
705 B
Nix
Raw Normal View History

2020-08-22 17:44:39 +02:00
{ config, pkgs, ... }:
{
2020-12-05 16:05:26 +01:00
imports = [
./hardware-configuration.nix
../../modules
../../users/simon
];
2020-08-22 17:44:39 +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.intel.enable = true;
gui.enable = true;
2020-12-05 15:37:44 +01:00
libvirt.enable = true;
2020-12-05 14:19:34 +01:00
restic.enable = true;
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.4";
};
2020-12-05 13:48:06 +01:00
};
boot.loader.grub.device = "/dev/disk/by-id/ata-INTEL_SSDSC2KB480G7_PHYS749202D6480BGN";
2020-08-22 17:44:39 +02:00
boot.initrd.luks.devices = {
root = {
name = "root";
device = "/dev/disk/by-uuid/f3a2fa57-581b-4e95-9a45-d61cda9edc54";
2020-08-22 17:44:39 +02:00
preLVM = true;
allowDiscards = true;
};
};
networking.hostName = "nunotaba";
}