47 lines
1.4 KiB
Nix
47 lines
1.4 KiB
Nix
{ config, pkgs, pkgs-unstable, ... }:
|
|
let
|
|
net_opts = [ "x-systemd.automount" "noauto" "x-systemd.idle-timeout=60" "x-systemd.device-timeout=5s" "x-systemd.mount-timeout=5s" ];
|
|
in
|
|
{
|
|
imports = [ ../../externals/systemd-boot-secure ];
|
|
boot = {
|
|
kernelPackages = pkgs-unstable.linuxPackages_latest;
|
|
extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ];
|
|
kernel.sysctl."vm.swappiness" = 5;
|
|
tmp.cleanOnBoot = true;
|
|
loader.systemd-boot-secure = {
|
|
enable = true;
|
|
signed = true;
|
|
signing-key = "/root/secure-boot/db.key";
|
|
signing-certificate = "/root/secure-boot/db.crt";
|
|
};
|
|
|
|
# Encrypted drives
|
|
initrd.luks = {
|
|
reusePassphrases = true;
|
|
devices = {
|
|
"${config.networking.hostName}" = {
|
|
device = "/dev/disk/by-uuid/274ec302-20b7-43bf-aa72-895ffdd96919";
|
|
preLVM = true;
|
|
allowDiscards = true;
|
|
};
|
|
glimmer = {
|
|
device = "/dev/disk/by-uuid/43220fc3-2f33-4915-9365-59eb27b21719";
|
|
preLVM = true;
|
|
allowDiscards = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
fileSystems."/media/luna/media".options = net_opts;
|
|
fileSystems."/media/luna/photos".options = net_opts;
|
|
fileSystems."/media/luna/games".options = net_opts;
|
|
fileSystems."/media/luna/private".options = net_opts;
|
|
|
|
services.btrfs.autoScrub = {
|
|
enable = true;
|
|
fileSystems = [ "/" "/media/data" ];
|
|
};
|
|
}
|