Fix/reorganize profile variants

This commit is contained in:
Geoffrey Frogeye 2023-11-30 19:01:55 +01:00
parent 224f769324
commit bc4676dec0
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
3 changed files with 22 additions and 23 deletions

View file

@ -1,8 +1,15 @@
{ lib, ... }:
{
imports = [
"${builtins.fetchTarball "https://github.com/NixOS/nixos-hardware/archive/468a7a108108908c7a35d6549f1e1f0236a9448a.tar.gz"}/dell/g3/3779"
<nixos-hardware/dell/g3/3779>
];
boot.loader.efi.canTouchEfiVariables = lib.mkDefault true;
# UEFI works here, and variables can be touched
boot.loader = {
efi.canTouchEfiVariables = lib.mkDefault true;
grub = {
enable = true;
efiSupport = true;
};
};
}