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, ... }: { { config, lib, pkgs, ... }: {
options = { options = {
homeconfig.homeScripts.enable = lib.options.mkOption { homeconfig.scripts.enable = lib.options.mkOption {
type = lib.types.bool; type = lib.types.bool;
default = true; default = true;
}; };
}; };
config = lib.mkIf config.homeScripts.enable { config = lib.mkIf config.homeconfig.scripts.enable {
home.packages = [ home.packages = [
#scripts #scripts

View File

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