stockholm/makefu/2configs/fs/sda-crypto-root-home.nix
2016-10-20 20:54:38 +02:00

26 lines
507 B
Nix

{ config, lib, pkgs, ... }:
# ssd #
# sda: bootloader grub2
# sda1: boot ext4 (label nixboot)
# sda2: cryptoluks ->
# lvm:
# / (main-root)
# /home (main-home)
with import <stockholm/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" ];
};
};
}