Finalize Disko config before testing, add boilerplate to Haven and Shura
This commit is contained in:
parent
770b5c0850
commit
6b71e39ca2
|
@ -40,6 +40,16 @@ in
|
||||||
tpm2.enable = true;
|
tpm2.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Use Disko to partition and format disks
|
||||||
|
disko = {
|
||||||
|
enable = false;
|
||||||
|
primaryDiskID = "nvme-eui.002538da11443b4d";
|
||||||
|
swapFile = {
|
||||||
|
enable = true;
|
||||||
|
size = "16G";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Change the default text editor. Options are "emacs", "nano", or "vim".
|
# Change the default text editor. Options are "emacs", "nano", or "vim".
|
||||||
editor = "nano";
|
editor = "nano";
|
||||||
|
|
||||||
|
|
|
@ -53,6 +53,16 @@ in
|
||||||
tpm2.enable = true;
|
tpm2.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Partition disks using Disko
|
||||||
|
disko = {
|
||||||
|
enable = false;
|
||||||
|
primaryDiskID = "nvme-eui.ace42e0025b66c912ee4ac0000000001";
|
||||||
|
swapFile = {
|
||||||
|
enable = true;
|
||||||
|
size = "16G";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Change the default text editor. Options are "emacs", "nano", or "vim".
|
# Change the default text editor. Options are "emacs", "nano", or "vim".
|
||||||
editor = "nano";
|
editor = "nano";
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ lib, config, ... }:
|
{ lib, config, ... }:
|
||||||
let
|
let
|
||||||
cfg = config.disko;
|
cfg = config.aux.system.disko;
|
||||||
|
|
||||||
standardMountOpts = [
|
standardMountOpts = [
|
||||||
"compress=zstd"
|
"compress=zstd"
|
||||||
|
@ -9,20 +9,12 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options = {
|
options = {
|
||||||
disko = {
|
aux.system.disko = {
|
||||||
enable = lib.mkEnableOption (lib.mdDoc "Enables Disko for disk & partition management.");
|
enable = lib.mkEnableOption (lib.mdDoc "Enables Disko for disk & partition management.");
|
||||||
primaryDisk = lib.mkOption {
|
primaryDiskID = lib.mkOption {
|
||||||
type = lib.types.attrs;
|
type = lib.types.str;
|
||||||
description = "The disk to format using Disko.";
|
description = "The ID of the disk to manage using Disko. If possible, use the World Wide Name (WWN), e.g `/dev/disk/by-id/nvme-eui.*`";
|
||||||
default = {
|
default = "";
|
||||||
name = "nvme0n1";
|
|
||||||
id = "";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
enableTPM = lib.mkOption {
|
|
||||||
type = lib.types.bool;
|
|
||||||
description = "Enables TPM2 support.";
|
|
||||||
default = true;
|
|
||||||
};
|
};
|
||||||
swapFile = {
|
swapFile = {
|
||||||
enable = lib.mkEnableOption (lib.mdDoc "Enables the creation of swap files.");
|
enable = lib.mkEnableOption (lib.mdDoc "Enables the creation of swap files.");
|
||||||
|
@ -36,8 +28,15 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
|
# Check for blank values
|
||||||
|
assertions = [
|
||||||
|
{
|
||||||
|
assertion = (cfg.primaryDiskID != "");
|
||||||
|
message = "aux.system.disko.primaryDiskID is not set. Please enter a valid disk ID.";
|
||||||
|
}
|
||||||
|
];
|
||||||
# Disk management
|
# Disk management
|
||||||
disko.enableConfig = false;
|
disko.enableConfig = true;
|
||||||
disko.devices = {
|
disko.devices = {
|
||||||
disk = {
|
disk = {
|
||||||
main = {
|
main = {
|
||||||
|
@ -66,7 +65,7 @@ in
|
||||||
name = "cryptroot";
|
name = "cryptroot";
|
||||||
settings = {
|
settings = {
|
||||||
allowDiscards = true;
|
allowDiscards = true;
|
||||||
crypttabExtraOpts = lib.mkIf cfg.enableTPM [ "tpm2-device=auto" ];
|
crypttabExtraOpts = lib.mkIf config.aux.system.bootloader.tpm2.enable [ "tpm2-device=auto" ];
|
||||||
};
|
};
|
||||||
content = {
|
content = {
|
||||||
type = "btrfs";
|
type = "btrfs";
|
Loading…
Reference in a new issue