16 lines
246 B
Nix
16 lines
246 B
Nix
# Import all modules so only needs to Import nyx.nix
|
|
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
# System modules
|
|
# Rebuild
|
|
./nyx-rebuild.nix
|
|
# Custom Banner
|
|
./nyx-tool.nix
|
|
# Nyx cleanup
|
|
./nyx-cleanup.nix
|
|
];
|
|
}
|