mirror of
https://codeberg.org/muon/home.git
synced 2025-12-05 23:57:46 +00:00
14 lines
220 B
Nix
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;
|
|
};
|
|
}
|