18 lines
431 B
Nix
18 lines
431 B
Nix
|
{ inputs, pkgs, config, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./desktop/apps/godot.nix
|
||
|
./desktop/apps/cad.nix
|
||
|
./desktop/apps/cam.nix
|
||
|
./desktop/apps/code.nix
|
||
|
./desktop/apps/art.nix
|
||
|
./desktop/apps/xiv.nix
|
||
|
./desktop/apps/chat.nix
|
||
|
./desktop/apps/minecraft.nix
|
||
|
|
||
|
./system/boot/grub.nix
|
||
|
./system/audio.nix
|
||
|
./system/locale.nix
|
||
|
./system/network.nix
|
||
|
];
|
||
|
}
|