17 lines
245 B
Nix
17 lines
245 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
fileSystems."/mnt/nvme" = {
|
|
device = "/dev/nvme0n1";
|
|
fsType = "ext4";
|
|
options = [
|
|
"defaults"
|
|
"nofail"
|
|
];
|
|
};
|
|
|
|
systemd.tmpfiles.rules = [
|
|
"d /mnt/nvme 0775 brian users -"
|
|
];
|
|
}
|