It builds!

This commit is contained in:
2024-10-18 10:57:09 -05:00
parent a11206680a
commit 0153012f90
11 changed files with 206 additions and 389 deletions

View File

@@ -1,11 +1,11 @@
{ config, lib, core_inputs, ... }: {
options.sysconfig.firstBoot = lib.options.mkOption {
options.sysconfig.opts.firstBoot = lib.options.mkOption {
type = lib.types.bool;
default = false;
};
config = lib.mkIf config.sysconfig.firstBoot {
config = lib.mkIf config.sysconfig.opts.firstBoot {
users.users.${core_inputs.user} = {
initialPassword = "7567";