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