mirror of
https://codeberg.org/muon/home.git
synced 2025-12-05 23:57:46 +00:00
8 lines
236 B
Nix
8 lines
236 B
Nix
{ pkgs, lib, osConfig, ... }: {
|
|
imports =
|
|
[ ./shell.nix ./emulator.nix ./development.nix ./tools.nix ./yazi.nix ];
|
|
|
|
config = lib.mkIf osConfig.mods.desktop.enable {
|
|
mods.terminal.emulator.enable = lib.mkDefault true;
|
|
};
|
|
}
|