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