25 lines
662 B
Text
25 lines
662 B
Text
modules/${class}/default.nix # imported by easy-hosts.perClass.modules
|
|
|
|
imports = [
|
|
../base # common across all systems
|
|
./base # common across all ${class} systems
|
|
./shell # WM/DE
|
|
./programs
|
|
# default.nix - turns on/off depending on profile
|
|
./services
|
|
# default.nix - turns on/off depending on profile
|
|
];
|
|
|
|
|
|
|
|
modules/home/default.nix
|
|
|
|
imports = [
|
|
./shell # WM/DE
|
|
./programs
|
|
# default.nix - turns on/off depending on profile
|
|
# ${program}.nix - OS check here if needed
|
|
./services
|
|
# default.nix - turns on/off depending on profile
|
|
# ${service}.nix - OS check here if needed
|
|
];
|