refactor(scripts): remove unnecessary imports
All checks were successful
/ check (push) Successful in 9s
/ check-renovaterc (push) Successful in 3s
/ build-packages (push) Successful in 13s
/ build-vm (push) Successful in 1s
/ report-size (push) Successful in 4s

They slow down evaluations
This commit is contained in:
Jalil David Salamé Messina 2025-04-21 19:56:24 +02:00
parent 46ba379d08
commit 165c403072
Signed by: jalil
GPG key ID: F016B9E770737A0B
3 changed files with 23 additions and 23 deletions

View file

@ -13,7 +13,7 @@ in
./home-modules.nix
./nixvim-modules.nix
./overlays.nix
./scripts.nix
../scripts
];
perSystem =

View file

@ -1,14 +0,0 @@
let
scripts = import ../scripts;
in
{
# Add scripts to overlay
flake.overlays.scripts = final: prev: scripts final;
# Add scripts to packages
perSystem =
{ pkgs, ... }:
{
packages = scripts pkgs;
};
}