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