mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
13 lines
207 B
Nix
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;
|
|
};
|
|
}
|