15 lines
165 B
Nix
15 lines
165 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
# services show up in glance in reverse import order lmao
|
|
imports = [
|
|
./nfs
|
|
./smb
|
|
./zfs
|
|
./copyparty
|
|
];
|
|
}
|