summaryrefslogtreecommitdiff
path: root/hel/boot.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-05-12 23:04:51 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2016-05-12 23:04:51 +0200
commitb79e59b6a89b5053460a2c72fdf05fe475a50f37 (patch)
tree163b51cec2eb4e24dc39fd20dd7f78308fa83fe0 /hel/boot.nix
parent5370b5df1431cb295dc4ef551c59296418f25a6a (diff)
downloadnixos-b79e59b6a89b5053460a2c72fdf05fe475a50f37.tar
nixos-b79e59b6a89b5053460a2c72fdf05fe475a50f37.tar.gz
nixos-b79e59b6a89b5053460a2c72fdf05fe475a50f37.tar.bz2
nixos-b79e59b6a89b5053460a2c72fdf05fe475a50f37.tar.xz
nixos-b79e59b6a89b5053460a2c72fdf05fe475a50f37.zip
Hel
Diffstat (limited to 'hel/boot.nix')
-rw-r--r--hel/boot.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/hel/boot.nix b/hel/boot.nix
new file mode 100644
index 00000000..66531e5d
--- /dev/null
+++ b/hel/boot.nix
@@ -0,0 +1,12 @@
1{ config, lib, pkgs, ... }:
2
3{
4 boot = {
5 initrd.luks.devices = [ { name = "ssd"; device = "/dev/disk/by-uuid/sH2z1p-XRak-v8eq-YLMb-XIk1-5j8o-psLUa5"; }
6 ];
7 loader = {
8 gummiboot.enable = true;
9 efi.canTouchEfiVariables = true;
10 };
11 };
12}