23 lines
437 B
Nix
23 lines
437 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./nas-mounts.nix
|
|
];
|
|
|
|
fileSystems = {
|
|
"/home/chris/Games" = {
|
|
device = "/dev/disk/by-label/Games";
|
|
fsType = "ext4";
|
|
options = [
|
|
"defaults"
|
|
"x-systemd.mount-timeout=5"
|
|
"user"
|
|
"exec"
|
|
"x-systemd.automount"
|
|
"noauto"
|
|
];
|
|
};
|
|
};
|
|
}
|