Compare commits

...

2 Commits

Author SHA1 Message Date
henrov 7baf7c1ac3 Working on reshuffling 2026-03-19 13:19:12 +00:00
henrov 64a083db65 deleted generated files 2026-03-19 13:19:11 +00:00
2 changed files with 2 additions and 16 deletions
+1 -8
View File
@@ -787,17 +787,10 @@ in
# Top-level toggle for this module
options.enableFlatpaks = lib.mkEnableOption "Enable automatic Flatpak installation";
# Define myApps container safely
options.myApps = lib.mkOption {
type = lib.types.attrsOf (lib.types.attrsOf lib.types.str);
default = {};
description = "Top-level container for custom apps";
};
# Wrap all configuration safely
config = lib.mkIf enableProgram {
# myApps container
# myApps container (just assign in config, do NOT declare options.myApps)
myApps = {
flatpaks = {
enable = true;
+1 -8
View File
@@ -11,17 +11,10 @@ in
# Top-level toggle for this module
options.enableFlatpaks = lib.mkEnableOption "Enable automatic Flatpak installation";
# Define myApps container safely
options.myApps = lib.mkOption {
type = lib.types.attrsOf (lib.types.attrsOf lib.types.str);
default = {};
description = "Top-level container for custom apps";
};
# Wrap all configuration safely
config = lib.mkIf enableProgram {
# myApps container
# myApps container (just assign in config, do NOT declare options.myApps)
myApps = {
flatpaks = {
enable = true;