modify partition

This commit is contained in:
2025-11-14 00:41:18 +09:00
parent cc8299c5f5
commit 20e97efe95
2 changed files with 11 additions and 4 deletions

View File

@@ -148,6 +148,7 @@ in {
openal
myRizin
libgit2
ntfs3g
inputs.helix.packages."${pkgs.system}".helix
];

View File

@@ -54,10 +54,16 @@
options = [ "fmask=0022" "dmask=0022" ];
};
fileSystems."/mnt/hdd1" = {
device = "/dev/disk/by-uuid/EC40940C4093DC20";
fsType = "ntfs-3g";
options = [ "rw" "uid=1000" "umask=0022" "noauto" ];
# fileSystems."/mnt/hdd1" = {
# device = "/dev/disk/by-uuid/EC40940C4093DC20";
# fsType = "ntfs-3g";
# options = [ "rw" "uid=1000" "umask=0022" "noauto" ];
# };
fileSystems."/mnt/ssd1" = {
device = "UUID=4e1710bb-2cc9-41c3-909c-34f24bd1f63e";
fsType = "btrfs";
options = [ "defaults" "ssd" "noatime" "noauto" ];
};
swapDevices = [ ];