This commit is contained in:
joygnu 2024-08-17 17:06:58 +02:00
parent 66fd7e6591
commit 7f3f49c683
3 changed files with 25 additions and 5 deletions

View file

@ -2,10 +2,20 @@
{
networking.hostName = "desktop";
networking.networkmanager.enable = true;
boot.loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi"; # ← use the same mount point here.
};
grub = {
efiSupport = true;
device = "nodev";
};
};
services.hardware.openrgb.enable = true;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
imports = [
../../modules

View file

@ -2,9 +2,18 @@
{
networking.hostName = "laptop";
networking.networkmanager.enable = true;
boot.loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi"; # ← use the same mount point here.
};
grub = {
efiSupport = true;
device = "nodev";
};
};
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
environment.systemPackages = with pkgs; [
prismlauncher

View file

@ -25,4 +25,5 @@
services.printing.enable = true;
time.timeZone = "Europe/Zurich";
system.stateVersion = "23.11";
home-manager.backupFileExtension = "backup";
}