Files
nix-flakes/modules/default.nix
2025-07-23 16:47:48 +03:00

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
];
};
}