13 lines
241 B
Nix
13 lines
241 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
# ./journald.nix # FIXME: start systemd-journal-upload.service after tailscaled
|
|
./nix.nix
|
|
./overlays.nix
|
|
|
|
inputs.synix.nixosModules.device.server
|
|
];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
}
|