NixOS-95/Modules/Applications/default.nix
2025-07-24 15:19:29 +02:00

16 lines
292 B
Nix

# Import all modules so home.nix only needs to import this file
{ config, pkgs, lib, inputs, ... }: {
imports = [
#################
# 🖥 GUI Software #
#################
./GUI-Apps
#################
# 🐚 Shell Setup #
#################
./Shell
];
}