|
|
@ -15,20 +15,23 @@ in
|
|
|
|
];
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
# Use the GRUB 2 boot loader.
|
|
|
|
# Use the GRUB 2 boot loader.
|
|
|
|
boot.loader.grub = {
|
|
|
|
boot.loader = {
|
|
|
|
|
|
|
|
efi = {
|
|
|
|
|
|
|
|
canTouchEfiVariables = true;
|
|
|
|
|
|
|
|
efiSysMountPoint = "/boot";
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
grub = {
|
|
|
|
enable = true;
|
|
|
|
enable = true;
|
|
|
|
version = 2;
|
|
|
|
version = 2;
|
|
|
|
# efiSupport = true;
|
|
|
|
efiSupport = true;
|
|
|
|
# efiInstallAsRemovable = true;
|
|
|
|
device = "nodev";
|
|
|
|
# efiSysMountPoint = "/boot/efi";
|
|
|
|
};
|
|
|
|
# Define on which hard drive you want to install Grub.
|
|
|
|
|
|
|
|
device = "/dev/sda"; # or "nodev" for efi only
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
# networking.hostName = "nixos"; # Define your hostname.
|
|
|
|
# networking.hostName = "elnupad"; # Define your hostname.
|
|
|
|
# Pick only one of the below networking options.
|
|
|
|
# Pick only one of the below networking options.
|
|
|
|
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
|
|
|
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
|
|
|
# networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
|
|
|
|
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
|
|
|
|
|
|
|
|
|
|
|
|
# Set your time zone.
|
|
|
|
# Set your time zone.
|
|
|
|
time.timeZone = "America/Los_Angeles";
|
|
|
|
time.timeZone = "America/Los_Angeles";
|
|
|
|