flake/modules/home/desktop/default.nix
2024-06-07 00:05:58 +00:00

13 lines
207 B
Nix

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