alpha
Login
or
Join now
seanaye.bsky.social
/
nixos-config
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
me like nix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
install new drives
author
Sean Aye
date
11 months ago
(Jul 14, 2025, 12:03 PM -0400)
commit
b521e4f2
b521e4f2986d0512367ce78a75744f80f3cb5940
parent
95e30a92
95e30a92883195da48e5e2063b7b23a356334b55
change-id
zwtowpyy
zwtowpyyuwmzquuwnmoxsxmymslpuntu
+12
-1
1 changed file
Expand all
Collapse all
Unified
Split
hardware-configuration.nix
+12
-1
hardware-configuration.nix
Reviewed
···
4
4
{
5
5
config,
6
6
lib,
7
7
-
pkgs,
8
7
modulesPath,
9
8
...
10
9
}:
···
38
37
"fmask=0077"
39
38
"dmask=0077"
40
39
];
40
40
+
};
41
41
+
fileSystems."/mnt/storage1" = {
42
42
+
device = "/dev/disk/by-uuid/3bb5c3d3-f3ce-4c54-a86c-589b477eda20";
43
43
+
fsType = "ext4";
44
44
+
# reduce write ops
45
45
+
options = [ "noatime" ];
46
46
+
};
47
47
+
fileSystems."/mnt/storage2" = {
48
48
+
device = "/dev/disk/by-uuid/40b9cab0-9f25-4b36-9f22-6ebea1fe6e7a";
49
49
+
fsType = "ext4";
50
50
+
# reduce write ops
51
51
+
options = [ "noatime" ];
41
52
};
42
53
43
54
swapDevices = [ ];