nixos-conf/hosts/syncthing/configuration.nix

21 lines
349 B
Nix
Raw Normal View History

2025-05-29 15:39:42 +03:00
{ lib, ... }:
2024-05-23 13:39:48 +03:00
{
2025-06-30 01:56:57 +03:00
swapDevices = [
{
device = "/var/lib/swapfile";
size = 2 * 1024;
}
];
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;
sops.secrets = lib.mkForce { };
2024-05-23 13:39:48 +03:00
}