21 lines
320 B
Nix
21 lines
320 B
Nix
{ ... }: {
|
|
imports = [
|
|
../Generic/Arch/config.nix
|
|
];
|
|
|
|
config = {
|
|
valhalla = {
|
|
hostname = "manu-surface";
|
|
hidpi = true;
|
|
linux.secureBoot = true;
|
|
|
|
hardware = {
|
|
surfaceBook = true;
|
|
xoneReceiver = true;
|
|
};
|
|
|
|
partition.os.deviceName = "nvme0n1";
|
|
};
|
|
};
|
|
}
|