16 lines
206 B
Nix
16 lines
206 B
Nix
{
|
|
lib,
|
|
namespace,
|
|
...
|
|
}: let
|
|
inherit (lib.${namespace}) enabled;
|
|
in {
|
|
${namespace} = {
|
|
bundles = {
|
|
common = enabled;
|
|
shell = enabled;
|
|
};
|
|
};
|
|
|
|
home.stateVersion = "25.11";
|
|
}
|