flake/modules/home/desktop/default.nix
2024-06-11 11:59:54 +00:00

14 lines
220 B
Nix

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