Nyx-Tools/nyx.nix
2025-07-15 11:25:00 +02:00

22 lines
323 B
Nix

# Import all modules so only needs to Import nyx.nix
{ config, pkgs, lib, nixDirectory, ... }:
{
imports = [
# System modules
# Rebuild
./nyx-rebuild.nix
# Custom Banner
./nyx-tool.nix
# Nyx cleanup
./nyx-cleanup.nix
];
home.packages = with pkgs; [
nix-output-monitor
];
}