13 lines
246 B
Nix
Executable File
13 lines
246 B
Nix
Executable File
{ namespace, ... }:
|
|
{
|
|
specialisation.hyprland.configuration = {
|
|
${namespace} = {
|
|
desktop = {
|
|
hyprland.enable = true;
|
|
gnome.enable = false;
|
|
};
|
|
};
|
|
environment.etc."specialisation".text = "hyprland";
|
|
};
|
|
}
|