Files
nix/modules/holocron/default.nix
2025-10-16 20:02:17 -05:00

20 lines
269 B
Nix

{
pkgs,
config,
lib,
inputs,
...
}: {
# services show up in glance in reverse import order lmao
imports = [
./nfs
./smb
./zfs
./copyparty
];
# define the groups used for backups and archives
users.groups.archives = {gid = 727;};
}