basic coding config

This commit is contained in:
m3tam3re
2025-08-24 17:09:45 +02:00
parent cde1d7bd09
commit 19dc7fff93
7 changed files with 176 additions and 32 deletions

View File

@@ -1,6 +1,7 @@
{inputs, ...}: {
{ inputs, ... }:
{
# This one brings our custom packages from the 'pkgs' directory
additions = final: prev: (import ../pkgs {pkgs = final;});
additions = final: prev: (import ../pkgs { pkgs = final; });
# This one contains whatever you want to overlay
# You can change versions, add patches, set compilation flags, anything really.
# https://nixos.wiki/wiki/Overlays
@@ -25,10 +26,10 @@
# });
};
# stable-packages = final: _prev: {
# stable = import inputs.nixpkgs-stable {
# system = final.system;
# config.allowUnfree = true;
# };
# };
stable-packages = final: _prev: {
stable = import inputs.nixpkgs-stable {
system = final.system;
config.allowUnfree = true;
};
};
}