set config limit
This commit is contained in:
parent
eb0d7785d5
commit
98159baa66
1 changed files with 8 additions and 3 deletions
|
@ -6,9 +6,14 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.loader.grub.enable = true;
|
boot.loader = {
|
||||||
boot.loader.grub.device = "/dev/sda";
|
grub = {
|
||||||
boot.loader.grub.useOSProber = true;
|
enable = true;
|
||||||
|
configurationLimit = 3;
|
||||||
|
device = "/dev/sda";
|
||||||
|
useOSProber = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
networking.hostName = "sutakku";
|
networking.hostName = "sutakku";
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue