mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
15 lines
278 B
Nix
15 lines
278 B
Nix
{ pkgs, lib, config, ... }: {
|
|
imports = [
|
|
./xorg.nix
|
|
./sound.nix
|
|
];
|
|
|
|
options = {
|
|
mods.desktop.enable = lib.mkEnableOption "enables sound";
|
|
};
|
|
|
|
config = lib.mkIf config.mods.desktop.enable {
|
|
mods.xorg.enable = true;
|
|
mods.sound.enable = true;
|
|
};
|
|
}
|