diff options
author | Kjetil Orbekk <kjetil.orbekk@gmail.com> | 2017-05-19 09:53:39 -0400 |
---|---|---|
committer | Kjetil Orbekk <kjetil.orbekk@gmail.com> | 2017-05-19 09:53:39 -0400 |
commit | 5186fb4a68a640fc078f53012bbfc465ec03d5f3 (patch) | |
tree | 0cf4c3c997a196d0baae91ee1e0bf9921b173630 | |
parent | 64ed948bd24866da7d566a086ce8151dd630a3c8 (diff) |
aji: Fix boot options
-rw-r--r-- | machines/x220-aji.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/machines/x220-aji.nix b/machines/x220-aji.nix index ed10fb3..82bb8bf 100644 --- a/machines/x220-aji.nix +++ b/machines/x220-aji.nix @@ -22,12 +22,12 @@ extraModulePackages = [ config.boot.kernelPackages.tp_smapi ]; extraModprobeConfig = '' - option i915 enable_rc6=1 + options i915 enable_rc6=1 ''; }; fileSystems = { - "/boot" = { + "/boot" = lib.mkForce { mountPoint = "/boot"; device = "/dev/disk/by-uuid/829B-F56C"; fsType = "vfat"; |