Files
nix/modules/homelab/fileshare/default.nix

14 lines
182 B
Nix

{
pkgs,
config,
lib,
...
}: {
# services show up in glance in reverse import order lmao
imports = [
./shares/nfs.nix
./shares/smb.nix
./shares/zfs.nix
];
}