Beefcake modularization

This commit is contained in:
Daniel Flanagan 2024-03-13 21:12:14 -05:00
parent 884bc9f277
commit 0f33a266bd
4 changed files with 784 additions and 819 deletions

View file

@ -189,7 +189,13 @@ in {
enable = lib.mkDefault true; enable = lib.mkDefault true;
allowPing = lib.mkDefault true; allowPing = lib.mkDefault true;
allowedTCPPorts = lib.mkDefault [22]; allowedTCPPorts = lib.mkDefault [22];
allowedUDPPorts = lib.mkDefault []; allowedUDPPortRanges = [
{
# mosh
from = 60000;
to = 60010;
}
];
}; };
extraHosts = '' extraHosts = ''

View file

@ -8,6 +8,7 @@
./user-installed-applications.nix ./user-installed-applications.nix
./kde-connect.nix ./kde-connect.nix
./troubleshooting-tools.nix ./troubleshooting-tools.nix
./development-tools.nix
]; ];
hardware = { hardware = {

View file

@ -0,0 +1,7 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
watchexec
xh
curl
];
}

File diff suppressed because it is too large Load diff