25 lines
347 B
Nix
25 lines
347 B
Nix
|
{...}: {
|
||
|
imports = [
|
||
|
./hardware-configuration.nix
|
||
|
../../modules
|
||
|
];
|
||
|
|
||
|
boot.loader = {
|
||
|
grub = {
|
||
|
enable = true;
|
||
|
configurationLimit = 5;
|
||
|
device = "/dev/sda";
|
||
|
useOSProber = false;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
networking = {
|
||
|
hostName = "arashi";
|
||
|
};
|
||
|
|
||
|
services.xserver = {
|
||
|
layout = "us";
|
||
|
xkbVariant = "";
|
||
|
};
|
||
|
}
|