2020-08-22 17:44:39 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[
|
2020-08-30 10:03:48 +02:00
|
|
|
./hardware-configuration.nix
|
2020-10-17 13:20:02 +02:00
|
|
|
../../modules/cpu/intel.nix
|
2020-12-05 14:18:57 +01:00
|
|
|
../../modules
|
2020-08-22 17:44:39 +02:00
|
|
|
../../profiles/dev.nix
|
2020-11-07 19:17:32 +01:00
|
|
|
../../users/simon
|
2020-08-22 17:44:39 +02:00
|
|
|
];
|
|
|
|
|
2020-12-05 13:48:06 +01:00
|
|
|
sbruder = {
|
2020-12-05 15:57:23 +01:00
|
|
|
gpu.intel.enable = true;
|
2020-12-05 15:44:58 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2020-08-24 12:52:50 +02: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";
|
2020-08-24 12:52:50 +02:00
|
|
|
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";
|
|
|
|
}
|