flake/modules/home/desktop/default.nix
2024-06-06 20:16:24 +00:00

12 lines
190 B
Nix

{ pkgs, lib, osConfig, ... }:
let
cfg = osConfig.mods.desktop;
in {
imports = [
./hyprland.nix
];
config = lib.mkIf cfg.wayland.enable {
mods.hyprland.enable = true;
};
}