30 lines
601 B
Nix
Raw Normal View History

2021-02-07 02:38:11 +03:00
{ inputs, ... }: {
2021-06-16 05:30:04 +03:00
imports = with inputs.self.nixosModules; [
2021-02-07 02:38:11 +03:00
./hardware-configuration.nix
inputs.self.nixosProfiles.desktop
];
2021-06-16 05:30:04 +03:00
2021-02-07 02:38:11 +03:00
deviceSpecific.devInfo = {
cpu = {
vendor = "amd";
clock = 3700;
cores = 4;
};
drive = {
type = "ssd";
speed = 1000;
size = 30;
};
gpu = {
vendor = "vm";
};
bigScreen = true;
ram = 4;
};
deviceSpecific.isHost = false;
deviceSpecific.isShared = false;
deviceSpecific.isGaming = false;
deviceSpecific.enableVirtualisation = false;
2021-06-16 23:42:44 +03:00
deviceSpecific.wireguard.enable = false;
2021-02-07 02:38:11 +03:00
}