32 lines
628 B
Nix
Raw Normal View History

2021-09-15 15:41:21 +03:00
{ inputs, lib, ... }: {
2021-02-07 02:38:11 +03:00
imports = [
./hardware-configuration.nix
2021-11-05 21:45:23 +03:00
inputs.self.nixosRoles.workstation
2021-02-07 02:38:11 +03:00
];
2021-09-15 15:41:21 +03:00
2021-02-07 02:38:11 +03:00
deviceSpecific.devInfo = {
cpu = {
vendor = "amd";
clock = 3700;
cores = 6;
};
drive = {
type = "ssd";
speed = 6000;
size = 1000;
};
gpu = {
vendor = "amd";
};
bigScreen = true;
ram = 16;
};
deviceSpecific.isHost = true;
deviceSpecific.isShared = false;
deviceSpecific.isGaming = true;
deviceSpecific.enableVirtualisation = true;
2021-06-16 23:42:44 +03:00
deviceSpecific.wireguard.enable = true;
2021-09-15 15:41:21 +03:00
hardware.video.hidpi.enable = lib.mkForce false;
2021-02-07 02:38:11 +03:00
}