aboutsummaryrefslogtreecommitdiff
path: root/hosts/sparrow/filesystems
diff options
context:
space:
mode:
authortdback <tyler@tdback.net>2025-01-26 11:31:00 -0500
committertdback <tyler@tdback.net>2025-01-26 11:31:00 -0500
commita7c3d07078d0ca67afadd6fb24ab4b60b38c1109 (patch)
treeb214be5bc6bd1ea67c0499ee54ce3ec06565e929 /hosts/sparrow/filesystems
parent63883c4dea9ca50a4fd8756323ab04bf66e3dd3d (diff)
hosts: overhauled host configurations
Diffstat (limited to 'hosts/sparrow/filesystems')
-rw-r--r--hosts/sparrow/filesystems/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/hosts/sparrow/filesystems/default.nix b/hosts/sparrow/filesystems/default.nix
new file mode 100644
index 0000000..3e83293
--- /dev/null
+++ b/hosts/sparrow/filesystems/default.nix
@@ -0,0 +1,23 @@
+{
+ lib,
+ ...
+}:
+{
+ fileSystems."/" = {
+ device = "/dev/disk/by-uuid/d296f7a3-68d2-406f-963d-8ec39ab0ea64";
+ fsType = "ext4";
+ };
+
+ fileSystems."/boot" = {
+ device = "/dev/disk/by-uuid/B159-723B";
+ fsType = "vfat";
+ options = [
+ "fmask=0022"
+ "dmask=0022"
+ ];
+ };
+
+ swapDevices = lib.singleton {
+ device = "/.swapfile";
+ };
+}