nixos-config/machines/nunotaba/configuration.nix

38 lines
754 B
Nix
Raw Normal View History

2020-08-22 17:44:39 +02:00
{ config, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
2020-10-17 13:20:02 +02:00
../../modules/cpu/intel.nix
2020-10-16 18:34:51 +02:00
../../modules/gpu/intel.nix
2020-12-05 13:48:06 +01:00
../../modules/libvirt.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 = {
gui = 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";
}