forked from extern/nix-config
This makes it possible to define specializations that are technically modules without having them placed in the modules directory. This is mainly useful to separate core Hyprland logic from desktop environment logic.
12 lines
155 B
Nix
12 lines
155 B
Nix
{
|
|
specialisation = {
|
|
gnome.configuration.imports = [
|
|
./gnome.nix
|
|
];
|
|
|
|
plasma.configuration.imports = [
|
|
./plasma.nix
|
|
];
|
|
};
|
|
}
|