9 lines
241 B
Nix
9 lines
241 B
Nix
|
{ lib, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
"${builtins.fetchTarball "https://github.com/NixOS/nixos-hardware/archive/468a7a108108908c7a35d6549f1e1f0236a9448a.tar.gz"}/dell/g3/3779"
|
||
|
];
|
||
|
|
||
|
boot.loader.efi.canTouchEfiVariables = lib.mkDefault true;
|
||
|
}
|