Files
nixos/modules/de.nix
T
2025-06-30 15:19:13 -05:00

16 lines
230 B
Nix

{
lib,
myConfig,
...
}: {
imports =
[
../system/font.nix
../system/browser.nix
../system/wayland.nix
]
++ lib.optionals (myConfig.linux.gaming == true) [
../system/graphics.nix
];
}