Simplify something

This commit is contained in:
jimjam4real 2024-09-23 14:41:31 -04:00
parent b896a064f4
commit 3f0a235dc8
7 changed files with 4 additions and 11 deletions

View file

@ -37,10 +37,10 @@
in rec {
# Your custom packages
# Accessible through 'nix build', 'nix shell', etc
packages = forAllSystems (system: import ./pkgs nixpkgs.legacyPackages.${system});
packages = forAllSystems (system: import ./extras/pkgs nixpkgs.legacyPackages.${system});
# Your custom packages and modifications, exported as overlays
overlays = import ./overlays {inherit inputs;};
overlays = import ./extras/overlays.nix {inherit inputs;};
# Secrets defined so they can be accessed globally
secrets = import ./secrets.nix;