meta: Make specializations a nixosModule

Now it's possible to use the specializations in arbitrary configs. Note
that specializations do slow things down a bit so they may be disabled
by default in the future.
This commit is contained in:
Donovan Glover 2024-04-01 06:26:24 -04:00
parent 24c4badf39
commit 9b4d9c8bf5
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,11 +1,11 @@
{
specialisation = {
gnome.configuration.imports = [
./gnome.nix
../specializations/gnome.nix
];
plasma.configuration.imports = [
./plasma.nix
../specializations/plasma.nix
];
};
}