mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 15:11:34 +01:00
16 lines
281 B
Nix
16 lines
281 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
options.custom.de.hyprland.enable = lib.mkEnableOption "";
|
|
|
|
config = lib.mkIf config.custom.de.hyprland.enable {
|
|
programs.hyprland.enable = true;
|
|
|
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
|
|
services.gvfs.enable = true;
|
|
};
|
|
}
|