diff --git a/modules/nixos/services/firefly/default.nix b/modules/nixos/services/firefly/default.nix index a419de8..e3686a7 100644 --- a/modules/nixos/services/firefly/default.nix +++ b/modules/nixos/services/firefly/default.nix @@ -4,7 +4,7 @@ let inherit (flake.config.people.users.${user0}) email; inherit (flake.config.services.instances) firefly web; inherit (flake.config.machines.devices) ceres; - service = firefly.name; + service = firefly; localhost = web.localhost.address0; host = service.domains.url0; in @@ -61,19 +61,19 @@ in ); }; - fileSystems."/var/lib/${service.name}" = { - device = service.paths.path0; - fsType = "none"; - options = [ - "bind" - ]; - depends = [ - ceres.storage0.mount - ]; - }; + # fileSystems."/var/lib/${service.name}" = { + # device = service.paths.path0; + # fsType = "none"; + # options = [ + # "bind" + # ]; + # depends = [ + # ceres.storage0.mount + # ]; + # }; systemd.tmpfiles.rules = [ - "Z ${service.paths.path0} 755 ${service.name} ${service.name} -" + # "Z ${service.paths.path0} 755 ${service.name} ${service.name} -" "Z ${service.sops.path0} 755 ${service.name} ${service.name} -" ];