main
1{config, ...}: {
2 # Import manually to switch desktop environment.
3 flake.modules.nixos.desktop = _: {
4 imports = with config.flake.modules.nixos; [
5 # de-plasma
6 de-custom
7 ];
8 };
9
10 flake.modules.homeManager.desktop = _: {
11 imports = with config.flake.modules.homeManager; [
12 # de-plasma
13 de-custom
14 ];
15 };
16}