16 lines
292 B
Nix
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
|
|
|
|
|
|
];
|
|
}
|