Files
nix/modules/holocron/default.nix
2025-10-25 14:39:45 -05:00

22 lines
297 B
Nix

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