Skip to content

Commit

Permalink
✨ Add drive to pineapple
Browse files Browse the repository at this point in the history
  • Loading branch information
Snuggle committed Sep 17, 2024
1 parent fc0828c commit 321bd93
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions hosts/pineapple/hardware-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,19 @@
options = [ "fmask=0077" "dmask=0077" ];
};

fileSystems."/run/media/snuggle/pineapple" = {
device = "/dev/disk/by-uuid/4cb0cd63-5cdb-4c44-a282-cd2fd4a8c9c0";
fsType = "btrfs";
options = [ # If you don't have this options attribute, it'll default to "defaults"
# boot options for fstab. Search up fstab mount options you can use
"users" # Allows any user to mount and unmount
"nofail" # Prevents system from failing if this drive doesn't mount
"nosuid"
"nodev"
"x-gvfs-show"
];
};

swapDevices = [ ];

# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
Expand Down

0 comments on commit 321bd93

Please sign in to comment.