stockholm/makefu/2configs/fs/sda-crypto-root-home.nix
2015-10-17 11:17:11 +02:00

26 lines
480 B
Nix

{ config, lib, pkgs, ... }:
# ssd #
# sda: bootloader grub2
# sda1: boot ext4 (label nixboot)
# sda2: cryptoluks ->
# lvm:
# / (main-root)
# /home (main-home)
with lib;
{
imports = [
./sda-crypto-root.nix # configures crypto + boot
];
fileSystems = {
"/".device = lib.mkForce "/dev/mapper/main-root";
"/home" = {
device = "/dev/mapper/main-home";
fsType = "ext4";
options="defaults,discard";
};
};
}