nixos-config/machines/AMD-Workstation/default.nix

22 lines
372 B
Nix
Raw Normal View History

2021-01-21 22:13:53 +04:00
{ inputs, ... }: {
2021-01-22 21:44:23 +04:00
imports = [
2021-01-22 00:19:07 +04:00
./hardware-configuration.nix
inputs.self.nixosProfiles.desktop
];
2021-01-21 22:13:53 +04:00
deviceSpecific.devInfo = {
cpu = {
vendor = "amd";
clock = 4200;
cores = 8;
};
drive = {
type = "ssd";
speed = 6000;
size = 250;
};
bigScreen = true;
ram = 32;
};
services.apcupsd.enable = true;
}