20 lines
293 B
Nix
20 lines
293 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./nginx.nix
|
|
./tailscale.nix
|
|
];
|
|
|
|
config = {
|
|
system-manager.allowAnyDistro = true;
|
|
nixpkgs.hostPlatform = "aarch64-linux";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
curl
|
|
wget
|
|
htop
|
|
vim
|
|
];
|
|
};
|
|
}
|