This commit is contained in:
iawdwa 2025-07-11 09:13:09 +02:00
commit 7f583a7ed9
7 changed files with 489 additions and 0 deletions

16
nyx.nix Normal file
View file

@ -0,0 +1,16 @@
# 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
];
}