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

56 lines
1.4 KiB
Nix
Raw Normal View History

2023-08-30 20:58:52 +00:00
{ config, pkgs, ... }:
2021-01-15 19:27:51 +00:00
let
2023-08-26 23:00:18 +00:00
net_opts = [
"x-systemd.automount"
"noauto"
"x-systemd.idle-timeout=60"
"x-systemd.device-timeout=5s"
"x-systemd.mount-timeout=5s"
];
2024-03-02 03:13:17 +00:00
in
{
2020-04-11 21:47:33 +00:00
boot = {
2023-08-30 20:58:52 +00:00
kernelPackages = pkgs.linuxPackages_latest;
extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ];
2023-06-06 00:51:11 +00:00
tmp.cleanOnBoot = true;
2020-04-11 21:47:33 +00:00
# Encrypted drives
2020-04-11 21:47:33 +00:00
initrd.luks = {
reusePassphrases = true;
devices = {
2020-04-27 23:19:31 +00:00
"${config.networking.hostName}" = {
2020-04-11 21:47:33 +00:00
device = "/dev/disk/by-uuid/274ec302-20b7-43bf-aa72-895ffdd96919";
preLVM = true;
allowDiscards = true;
bypassWorkqueues = true;
2020-04-11 21:47:33 +00:00
};
glimmer = {
2021-01-16 04:14:30 +00:00
device = "/dev/disk/by-uuid/43220fc3-2f33-4915-9365-59eb27b21719";
preLVM = true;
allowDiscards = true;
bypassWorkqueues = true;
};
badssd = {
device = "/dev/disk/by-uuid/e1ce7879-a6e3-4f9a-bac9-186206060f83";
preLVM = true;
allowDiscards = true;
bypassWorkqueues = true;
};
2020-04-11 21:47:33 +00:00
};
};
};
2021-01-15 19:27:51 +00:00
2021-01-16 04:14:30 +00:00
fileSystems."/media/luna/media".options = net_opts;
fileSystems."/media/luna/photos".options = net_opts;
fileSystems."/media/luna/games".options = net_opts;
2021-01-23 19:00:13 +00:00
fileSystems."/media/luna/private".options = net_opts;
2022-02-01 07:00:28 +00:00
services.btrfs.autoScrub = {
enable = true;
2024-03-02 03:13:17 +00:00
fileSystems = [
"/"
"/media/data"
];
2022-02-01 07:00:28 +00:00
};
2020-04-11 21:47:33 +00:00
}