mirror of
https://codeberg.org/muon/home.git
synced 2026-03-08 03:25:16 +00:00
23 lines
327 B
Nix
23 lines
327 B
Nix
{
|
|
lib,
|
|
osConfig,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./shell.nix
|
|
./emulator.nix
|
|
./development.nix
|
|
./tools.nix
|
|
./yazi.nix
|
|
./hr
|
|
./helix
|
|
./nvim
|
|
./zellij
|
|
./opencode
|
|
./gh.nix
|
|
];
|
|
|
|
config = lib.mkIf osConfig.mods.desktop.enable {
|
|
mods.terminal.emulator.enable = lib.mkDefault true;
|
|
};
|
|
}
|