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