and palatine-hill is booting!
Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
parent
f780780523
commit
12555ebc3a
@ -73,7 +73,6 @@
|
||||
fprintd.enable = lib.mkForce false;
|
||||
openssh.enable = lib.mkForce false;
|
||||
|
||||
journald.storage = "volatile";
|
||||
spotifyd = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
@ -52,7 +52,6 @@
|
||||
options = [
|
||||
"noatime"
|
||||
"nodiratime"
|
||||
"discard"
|
||||
];
|
||||
};
|
||||
|
||||
@ -62,7 +61,6 @@
|
||||
options = [
|
||||
"noatime"
|
||||
"nodiratime"
|
||||
"discard"
|
||||
];
|
||||
};
|
||||
|
||||
@ -72,7 +70,6 @@
|
||||
options = [
|
||||
"noatime"
|
||||
"nodiratime"
|
||||
"discard"
|
||||
];
|
||||
};
|
||||
|
||||
@ -82,7 +79,6 @@
|
||||
options = [
|
||||
"noatime"
|
||||
"nodiratime"
|
||||
"discard"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
@ -64,7 +64,6 @@
|
||||
nfs.server.enable = true;
|
||||
openssh.ports = [ 666 ];
|
||||
smartd.enable = true;
|
||||
journald.storage = "volatile";
|
||||
|
||||
postgresql = {
|
||||
enable = true;
|
||||
|
@ -1,33 +1,53 @@
|
||||
{ ... }:
|
||||
{ lib, ... }:
|
||||
{
|
||||
|
||||
boot.initrd.services.lvm.enable = true;
|
||||
boot.zfs.requestEncryptionCredentials = lib.mkForce false;
|
||||
|
||||
boot.initrd.luks.devices = {
|
||||
"nixos-pv" = {
|
||||
device = "/dev/disk/by-uuid/614787a6-784a-4932-b787-cb6424725444";
|
||||
preLVM = true;
|
||||
allowDiscards = true;
|
||||
boot.initrd = {
|
||||
services.lvm.enable = true;
|
||||
luks.devices = {
|
||||
"nixos-pv" = {
|
||||
device = "/dev/disk/by-uuid/614787a6-784a-4932-b787-cb6424725444";
|
||||
preLVM = true;
|
||||
allowDiscards = true;
|
||||
};
|
||||
};
|
||||
|
||||
postResumeCommands = ''
|
||||
# let root mount and everything, then manually unlock stuff
|
||||
load_zfs_nix() {
|
||||
local device="/dev/disk/by-uuid/8bfaa32b-09dd-45c8-831e-05e80be82f9e"
|
||||
local mountPoint="/"
|
||||
local options="x-initrd.mount,noatime,nodiratime"
|
||||
local fsType="ext4"
|
||||
|
||||
echo "manually mounting key location, then unmounting"
|
||||
udevadm settle
|
||||
|
||||
mountFS "$device" "$(escapeFstab "$mountPoint")" "$(escapeFstab "$options")" "$fsType"
|
||||
|
||||
zfs load-key -L "file://$targetRoot/crypto/keys/zfs-nix-store-key" "ZFS-primary/nix"
|
||||
umount "$targetRoot/"
|
||||
}
|
||||
|
||||
load_zfs_nix
|
||||
'';
|
||||
};
|
||||
|
||||
fileSystems = {
|
||||
"/".options = [
|
||||
"noatime"
|
||||
"nodiratime"
|
||||
"discard"
|
||||
];
|
||||
|
||||
"/home".options = [
|
||||
"noatime"
|
||||
"nodiratime"
|
||||
"discard"
|
||||
];
|
||||
|
||||
"/boot".options = [
|
||||
"noatime"
|
||||
"nodiratime"
|
||||
"discard"
|
||||
"fmask=0077"
|
||||
"dmask=0077"
|
||||
];
|
||||
|
@ -13,6 +13,6 @@ import ../default.nix {
|
||||
name
|
||||
;
|
||||
publicKeys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPvF14bwJtV3r6O4KPydaIHmeiwJAYBs17nGDQUZgd5P alice@artemision"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIP7oJjIYNRCRrUlhdGJgst6bzqubbKH0gjZYulQ1eVcZ alice@artemision"
|
||||
];
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user