mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-02-09 14:30:06 +01:00
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
|
|
];
|
|
};
|
|
}
|