1
0
forked from extern/nix-config
donovanglover-nix-config/specializations/default.nix
Donovan Glover cb6d57536b
specializations: Configure inside default.nix
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.
2023-07-10 20:36:27 -04:00

12 lines
155 B
Nix

{
specialisation = {
gnome.configuration.imports = [
./gnome.nix
];
plasma.configuration.imports = [
./plasma.nix
];
};
}