Compare commits
2 Commits
c2dc15a6a2
...
2dedd98721
| Author | SHA1 | Date | |
|---|---|---|---|
| 2dedd98721 | |||
| 5e52e86084 |
+2
-2
@@ -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
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user