This commit is contained in:
mjallen18
2025-08-26 19:12:28 -05:00
parent baa831d002
commit 3fda24b5ac
3 changed files with 5 additions and 10 deletions

View File

@@ -1,12 +1,12 @@
{ lib, namespace, ... }:
with lib;
let
inherit (lib.${namespace}) mkOpt;
in
{
options.${namespace}.bootloader.lanzaboote = {
enable = mkEnableOption "enable lanzaboote";
configLimit = mkOption {
type = with types; int;
default = 10;
};
configLimit = mkOpt types.int 10 "Number of boot items to keep";
};
}

View File

@@ -1,6 +1,6 @@
{ config, ... }:
{
minecraft-server = {
services.minecraft-server = {
enable = false;
eula = true;
declarative = true;

View File

@@ -1,5 +0,0 @@
{
username = "admin";
hostAddress = "10.0.1.3";
hostName = "jallen-nas";
}