feat: add personal tmp

This commit is contained in:
2025-09-20 16:10:39 +09:00
parent 678d9874ff
commit c3c3649e21
2 changed files with 28 additions and 3 deletions

View File

@@ -15,9 +15,14 @@
boot.extraModulePackages = [ ];
# 1050 passthrough
# boot.extraModprobeConfig = ''
# options vfio-pci ids=10de:1c81,10de:0fb9
# '';
boot.extraModprobeConfig = ""
# + "options vfio-pci ids=10de:1c81,10de:0fb9\n"
+ ''
options hid_apple fnmode=2
'';
# hid_apple -> remove AK68 keyboard F1-F12 not pressing issue
boot.kernel.sysctl = { "hid_apple.fnmode" = 2; };
fileSystems."/" = {
device = "/dev/disk/by-uuid/4e08142c-1b09-4265-a497-822e4a83d4c8";
@@ -25,6 +30,12 @@
options = [ "subvol=root" ];
};
fileSystems."/x" = {
device = "tmpfs";
fsType = "tmpfs";
options = [ "size=8G" "mode=1777" ];
};
fileSystems."/home" = {
device = "/dev/disk/by-uuid/4e08142c-1b09-4265-a497-822e4a83d4c8";
fsType = "btrfs";