20 lines
610 B
Nix
20 lines
610 B
Nix
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||
# and may be overwritten by future invocations. Please make changes
|
||
# to /etc/nixos/configuration.nix instead.
|
||
{ config, lib, pkgs, modulesPath, ... }:
|
||
|
||
{
|
||
fileSystems."/data" =
|
||
{
|
||
device = "/dev/disk/by-uuid/d117419d-fce9-4d52-85c7-e3481feaa22a";
|
||
fsType = "btrfs";
|
||
options = [ "compress=zstd" "noatime" "nofail" ];
|
||
};
|
||
fileSystems."/1tbssd" =
|
||
{
|
||
device = "/dev/disk/by-uuid/801d9217-9c38-4ca8-914e-e31361603892";
|
||
fsType = "ext4";
|
||
options = [ "defaults" "nofail" "noatime" ];
|
||
};
|
||
}
|