update grub

This commit is contained in:
sadan 2025-02-08 18:25:57 -05:00
parent 91474c6889
commit 34ccc7d536
No known key found for this signature in database
2 changed files with 16 additions and 2 deletions

View file

@ -1,12 +1,14 @@
{ pkgs, ... }: {
boot = {
loader = {
timeout = 0;
grub = {
enable = true;
device = "nodev";
efiSupport = true;
useOSProber = true;
efiInstallAsRemovable = true;
timeoutStyle = "hidden";
};
};
};

View file

@ -1,4 +1,6 @@
{ NAME }: { ... }: {
{ NAME }:
{ ... }:
{
users = {
users = {
"${NAME}" = {
@ -8,10 +10,20 @@
};
};
};
systemd = {
network = {
wait-online = {
enable = false;
};
};
};
networking = {
networkmanager = {
enable = true;
};
nameservers = [ "1.1.1.1" "1.0.0.1" ];
nameservers = [
"1.1.1.1"
"1.0.0.1"
];
};
}