mirror of
https://github.com/Misterio77/Foundry.git
synced 2026-08-24 10:04:09 -05:00
9 lines
173 B
Nix
9 lines
173 B
Nix
{lib, config, ...}: {
|
|
options = {
|
|
home.exportedSessionPackages = lib.mkOption {
|
|
type = lib.types.listOf lib.types.pathInStore;
|
|
default = [];
|
|
};
|
|
};
|
|
}
|