nixos-config/machines/T420-Laptop/default.nix

18 lines
327 B
Nix
Raw Normal View History

2021-01-21 22:13:53 +04:00
{ inputs, ... }: {
imports = [ ./hardware-configuration.nix inputs.self.nixosProfiles.desktop ];
deviceSpecific.devInfo = {
legacy = false;
cpu = {
vendor = "intel";
clock = 2500;
cores = 2;
};
drive = {
type = "ssd";
speed = 1000;
size = 120;
};
ram = 8;
};
}