main
1{config, ...}: {
2 flake.modules.nixos.de-custom = _: {
3 imports = with config.flake.modules.nixos; [
4 wm-niri
5 # de-shell # No de-shell nixos module yet
6 ];
7 };
8
9 flake.modules.homeManager.de-custom = _: {
10 imports = with config.flake.modules.homeManager; [
11 wm-niri
12 de-shell
13 ];
14 };
15}