Skip to content

Instantly share code, notes, and snippets.

View jokogr's full-sized avatar

Yannis Koutras jokogr

View GitHub Profile

Keybase proof

I hereby claim:

  • I am jokogr on github.
  • I am joko (https://keybase.io/joko) on keybase.
  • I have a public key whose fingerprint is B154 A8F9 0610 DB45 0CA8 CF39 85EA E7D9 DF56 C5CA

To claim this, I am signing this object:

@jokogr
jokogr / grub-efi-with-windows.nix
Created January 12, 2018 20:40
Import this nix file to get grub installed in NixOS with UEFI and a Windows entry
{ config, ... }:
# Run "lsblk -o NAME,UUID" to find the Windows partition
let
windowsUuid = "9658-3521";
in {
boot.loader.grub = {
enable = true;
version = 2;
efiSupport = true;