dotfiles/nixos/boot.nix
2019-04-26 09:04:38 +01:00

11 lines
176 B
Nix

{ config, pkgs, ... }:
{
fileSystems."/".options = [ "noatime" "nodiratime" "discard" ];
boot = {
loader.grub = {
enable = true;
version = 2;
};
};
}