mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 16:17:46 +00:00
16 lines
345 B
Nix
16 lines
345 B
Nix
{ pkgs, lib, osConfig, ... }:
|
|
let
|
|
cfg = osConfig.mods.desktop;
|
|
in {
|
|
imports = [
|
|
./i3.nix
|
|
./hyprland.nix
|
|
./social.nix
|
|
./development.nix
|
|
./productivity.nix
|
|
./media.nix
|
|
];
|
|
|
|
mods.hyprland.enable = lib.mkIf cfg.wayland.enable true;
|
|
mods.i3.enable = lib.mkIf osConfig.services.xserver.windowManager.i3.enable true;
|
|
}
|