Added stargate server

This commit is contained in:
Aleksandr Lebedev 2025-09-17 21:29:09 +02:00
parent fbac93723b
commit ba8ee5e161
8 changed files with 152 additions and 31 deletions

View file

@ -0,0 +1,35 @@
{
lib,
pkgs,
inputs,
namespace,
system,
target,
format,
virtual,
systems,
config,
...
}:
with lib;
with lib.custom; {
facter.reportPath = ./facter.json;
imports = lib.snowfall.fs.get-nix-files ./.;
systemd.network.wait-online.enable = lib.mkForce false; #facter
custom.presets.disko.impermanenceBtrfsLuks = {
enable = true;
swapSize = 16;
};
custom.hardware.secureBoot = enabled;
custom.impermanence = enabled;
custom.users.kylekrein = {
enable = true;
config = {};
};
networking.firewall.allowedTCPPorts = [80 443 22];
# ======================== DO NOT CHANGE THIS ========================
system.stateVersion = "25.05";
# ======================== DO NOT CHANGE THIS ========================
}