This commit is contained in:
2025-08-26 16:54:21 -05:00
parent 37e0823d35
commit 4161c7f4d3
2 changed files with 3 additions and 3 deletions

View File

@@ -1,13 +1,13 @@
{ config, lib, pkgs, ... }: {
options = {
homeconfig.homeScripts.enable = lib.options.mkOption {
homeconfig.scripts.enable = lib.options.mkOption {
type = lib.types.bool;
default = true;
};
};
config = lib.mkIf config.homeScripts.enable {
config = lib.mkIf config.homeconfig.scripts.enable {
home.packages = [
#scripts

View File

@@ -26,7 +26,7 @@
graphical = false;
minimal = true;
host = "android";
homeScripts.enable = false;
scripts.enable = false;
};
home.username = "nathan";