nixos-conf/hosts/syncthing/configuration.nix

13 lines
220 B
Nix
Raw Normal View History

2025-05-29 15:39:42 +03:00
{ lib, ... }:
2024-05-23 13:39:48 +03:00
{
2024-06-02 05:53:39 +03:00
imports = [
../../shared/base.nix
2025-06-05 00:03:53 +03:00
../../shared/hardware/vm.nix
../../shared/users/vili.nix
2025-05-29 15:39:42 +03:00
../../servers/syncthing.nix
2024-06-02 05:53:39 +03:00
];
2024-05-23 13:39:48 +03:00
2025-05-29 15:39:42 +03:00
users.users.vili.hashedPasswordFile = lib.mkForce null;
2024-05-23 13:39:48 +03:00
}