mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-22 08:09:11 -05:00
update grub
This commit is contained in:
parent
91474c6889
commit
34ccc7d536
2 changed files with 16 additions and 2 deletions
|
@ -1,12 +1,14 @@
|
|||
{ pkgs, ... }: {
|
||||
boot = {
|
||||
loader = {
|
||||
timeout = 0;
|
||||
grub = {
|
||||
enable = true;
|
||||
device = "nodev";
|
||||
efiSupport = true;
|
||||
useOSProber = true;
|
||||
efiInstallAsRemovable = true;
|
||||
timeoutStyle = "hidden";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -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"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue