Migrated from default.nix to configuration.nix

This commit is contained in:
2025-05-17 17:13:43 +02:00
parent ceeb4980ef
commit f09dfbc108
18 changed files with 265 additions and 566 deletions

18
overlays/default.nix Normal file
View File

@@ -0,0 +1,18 @@
{ inputs, ...}: {
# This one brings our custom packages from the 'pkgs' directory
additions = final: prev: import ../pkgs final.pkgs;
# This one contains whatever you want to overlay
# You can change versions, add patches, set compilation flags, anything really.
# https://nixos.wiki/wiki/Overlays
modifications = final: prev: {
};
unstable-packages = final: _prev: {
unstable = import inputs.nixpkgs-unstable {
system = final.system;
config.allowUnfree = false;
};
};
}