18 lines
261 B
Nix
18 lines
261 B
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.my.profiles.hyprland;
|
|
in {
|
|
|
|
|
|
|
|
options.my.profiles.hyprland = with lib; {
|
|
enable = mkEnableOption "hyprland env";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
programs.hyprland.enable = true;
|
|
|
|
};
|
|
|
|
|
|
} |