Enable secureboot and TPM unlock
This commit is contained in:
parent
1c10a598e9
commit
a21b027c27
2 changed files with 2 additions and 39 deletions
|
@ -3,7 +3,7 @@
|
|||
imports = [
|
||||
#./boot
|
||||
./disko
|
||||
#./filesystems
|
||||
./filesystems
|
||||
./hardware
|
||||
./users
|
||||
../../modules/system
|
||||
|
@ -16,7 +16,7 @@
|
|||
|
||||
system = {
|
||||
desktop.enable = true;
|
||||
#lanzaboote.enable = true;
|
||||
lanzaboote.enable = true;
|
||||
wireless.enable = false;
|
||||
libvirtd.enable = true;
|
||||
stateVersion = "24.11";
|
||||
|
|
|
@ -1,43 +1,6 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
fileSystems = {
|
||||
# Games and such
|
||||
"/mnt/Linux1" = {
|
||||
device = "/dev/disk/by-uuid/b2901f8c-ffda-4b88-bb63-a9ea0c96ccb4";
|
||||
fsType = "ext4";
|
||||
options = [ "nosuid" "nodev" "nofail" "x-gvfs-show" ];
|
||||
};
|
||||
"/mnt/Linux2" = {
|
||||
device = "/dev/disk/by-uuid/f08e4f38-162c-402f-ba2a-5925151b78bf";
|
||||
fsType = "ext4";
|
||||
options = [ "nosuid" "nodev" "nofail" "x-gvfs-show" ];
|
||||
};
|
||||
"/mnt/Linux3" = {
|
||||
device = "/dev/disk/by-uuid/e7bc75bd-c371-4b28-b212-7be9b1fad339";
|
||||
fsType = "ext4";
|
||||
options = [ "nosuid" "nodev" "nofail" "x-gvfs-show" ];
|
||||
};
|
||||
"/mnt/Windows1" = {
|
||||
device = "/dev/disk/by-uuid/48F5C6E06416229C";
|
||||
options = [ "nosuid" "nodev" "noauto" ];
|
||||
};
|
||||
"/mnt/Windows2" = {
|
||||
device = "/dev/disk/by-uuid/0A5A3420237C863A";
|
||||
options = [ "nosuid" "nodev" "noauto" ];
|
||||
};
|
||||
|
||||
# Bulk storage mounts
|
||||
"/persist/var/lib/libvirt" = {
|
||||
device = "/dev/disk/by-uuid/abf78669-de2a-4afa-8e62-604f4e4cb355";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=libvirt" "nosuid" "nodev" "nofail" ];
|
||||
};
|
||||
"/persist/home/${config.sysusers.main}/VMs" = {
|
||||
device = "/dev/disk/by-uuid/abf78669-de2a-4afa-8e62-604f4e4cb355";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=images" "nosuid" "nodev" "nofail" ];
|
||||
};
|
||||
|
||||
# Network mounts
|
||||
"/home/${config.sysusers.main}/KittyNFS" = {
|
||||
device = "${config.ips.server}:/export/KittyNFS";
|
||||
|
|
Loading…
Add table
Reference in a new issue