This commit is contained in:
2025-07-23 16:47:48 +03:00
commit 349c65ed1f
22 changed files with 1032 additions and 0 deletions

19
modules/default.nix Normal file
View File

@@ -0,0 +1,19 @@
{ 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
];
};
}