Compare commits

...

2 Commits

Author SHA1 Message Date
henrov 2dedd98721 Working on reshuffling 2026-03-19 13:17:26 +00:00
henrov 5e52e86084 deleted generated files 2026-03-19 13:17:25 +00:00
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -789,7 +789,7 @@ in
# Define myApps top-level option if it doesn't exist yet # Define myApps top-level option if it doesn't exist yet
options.myApps = lib.mkOption { options.myApps = lib.mkOption {
type = lib.types.attrsOf lib.types.any; type = lib.types.attrsOf lib.types.value;
default = {}; default = {};
description = "Top-level container for custom apps"; description = "Top-level container for custom apps";
}; };
@@ -802,7 +802,7 @@ in
enable = true; enable = true;
user = username; user = username;
assetsDir = flatpakConfPath; assetsDir = flatpakConfPath;
files = []; # we handle parsing at runtime files = []; # handled at runtime
}; };
}; };
+2 -2
View File
@@ -13,7 +13,7 @@ in
# Define myApps top-level option if it doesn't exist yet # Define myApps top-level option if it doesn't exist yet
options.myApps = lib.mkOption { options.myApps = lib.mkOption {
type = lib.types.attrsOf lib.types.any; type = lib.types.attrsOf lib.types.value;
default = {}; default = {};
description = "Top-level container for custom apps"; description = "Top-level container for custom apps";
}; };
@@ -26,7 +26,7 @@ in
enable = true; enable = true;
user = username; user = username;
assetsDir = flatpakConfPath; assetsDir = flatpakConfPath;
files = []; # we handle parsing at runtime files = []; # handled at runtime
}; };
}; };