2025-05-29 15:39:42 +03:00
|
|
|
{ lib, ... }:
|
2024-05-23 13:39:48 +03:00
|
|
|
{
|
2024-09-27 21:25:38 +03:00
|
|
|
networking.hostName = "syncthing";
|
2024-05-23 13:39:48 +03:00
|
|
|
|
2024-06-02 05:53:39 +03:00
|
|
|
imports = [
|
2025-05-29 15:39:42 +03:00
|
|
|
../shared/base.nix
|
|
|
|
../shared/users/vili.nix
|
|
|
|
|
2025-05-29 02:12:20 +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-10-07 21:19:33 +03:00
|
|
|
|
2024-06-02 16:18:19 +03:00
|
|
|
# HARDWARE SPECIFIC
|
|
|
|
services.qemuGuest.enable = true;
|
2024-05-23 13:39:48 +03:00
|
|
|
}
|