23 lines
425 B
Nix
Raw Normal View History

2021-01-21 21:13:53 +03:00
{ inputs, ... }: {
2021-01-22 20:44:23 +03:00
imports = [
2021-01-21 23:19:07 +03:00
./hardware-configuration.nix
inputs.self.nixosProfiles.desktop
];
2021-01-21 21:13:53 +03: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;
2021-01-26 22:07:06 +03:00
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
2021-01-21 21:13:53 +03:00
}