nixos-config/system/rainbowdash/boot-config.nix

30 lines
638 B
Nix
Raw Normal View History

2023-08-30 20:58:52 +00:00
{ config, pkgs, ... }:
{
boot = {
2023-08-30 20:58:52 +00:00
kernelPackages = pkgs.linuxPackages_latest;
2023-06-06 00:51:11 +00:00
tmp.cleanOnBoot = true;
blacklistedKernelModules = [ "psmouse" ];
initrd = {
luks.devices."${config.networking.hostName}" = {
name = config.networking.hostName;
device = "/dev/disk/by-uuid/e8a47693-e6d9-4d66-ac8a-13633e606f3d";
preLVM = true;
allowDiscards = true;
};
};
};
fileSystems = {
2020-11-26 04:20:52 +00:00
"/home".options = [ "noatime" ];
"/boot".options = [ "noatime" ];
"/".options = [ "noatime" ];
};
2022-02-01 07:00:28 +00:00
services.btrfs.autoScrub = {
enable = true;
fileSystems = [ "/" ];
};
}