nixos-conf/machine-confs/syncthing.nix

16 lines
266 B
Nix
Raw Normal View History

{ pkgs, ... }:
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 = [
../base.nix
2024-06-06 16:53:15 +03:00
../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
2024-10-07 21:19:33 +03:00
users.users.vili.hashedPasswordFile = pkgs.lib.mkForce null;
2024-06-02 16:18:19 +03:00
# HARDWARE SPECIFIC
services.qemuGuest.enable = true;
2024-05-23 13:39:48 +03:00
}