Compare commits
3 commits
7479ca6ed3
...
0897a5e542
Author | SHA1 | Date | |
---|---|---|---|
0897a5e542 | |||
e6ac4b35ff | |||
308ba6bff1 |
2 changed files with 14 additions and 9 deletions
|
@ -39,7 +39,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
DEFAULT_BROWSER = "${pkgs.brave}/bin/brave";
|
DEFAULT_BROWSER = lib.getExe pkgs.firefox;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,7 +48,7 @@ in
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" = {
|
fileSystems."/efi" = {
|
||||||
device = "/dev/disk/by-uuid/1A0A-CEB2";
|
device = "/dev/disk/by-uuid/1A0A-CEB2";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
|
@ -129,14 +129,19 @@ in
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
boot.loader.grub = {
|
boot.loader = {
|
||||||
enable = true;
|
grub = {
|
||||||
efiSupport = true;
|
enable = true;
|
||||||
useOSProber = true;
|
efiSupport = true;
|
||||||
device = "nodev";
|
useOSProber = true;
|
||||||
theme = pkgs.rose-pine-grub;
|
device = "nodev";
|
||||||
|
theme = pkgs.rose-pine-grub;
|
||||||
|
};
|
||||||
|
efi = {
|
||||||
|
canTouchEfiVariables = true;
|
||||||
|
efiSysMountPoint = "/efi";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
|
||||||
|
|
||||||
# Enable networking
|
# Enable networking
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue