16 lines
284 B
Nix
16 lines
284 B
Nix
{ lib, ... }:
|
|
{
|
|
networking.hostName = "syncthing";
|
|
|
|
imports = [
|
|
../../shared/base.nix
|
|
../../shared/users/vili.nix
|
|
|
|
../../servers/syncthing.nix
|
|
];
|
|
|
|
users.users.vili.hashedPasswordFile = lib.mkForce null;
|
|
|
|
# HARDWARE SPECIFIC
|
|
services.qemuGuest.enable = true;
|
|
}
|