From 3a44b124561f544c229c0042cd0b91d055a33409 Mon Sep 17 00:00:00 2001 From: Mark Nipper Date: Thu, 11 Apr 2024 01:37:43 -0700 Subject: Add work VM and redo entire flake layout --- overlays/default.nix | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 overlays/default.nix (limited to 'overlays') diff --git a/overlays/default.nix b/overlays/default.nix deleted file mode 100644 index 669bd73..0000000 --- a/overlays/default.nix +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file defines overlays/custom modifications to upstream packages -# - -{ inputs, ... }: { - # This one brings our custom packages from the 'pkgs' directory - 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 - modifications = final: prev: { - # example = prev.example.overrideAttrs (oldAttrs: let ... in { - # ... - # }); - }; - - # When applied, the unstable nixpkgs set (declared in the flake inputs) will - # be accessible through 'pkgs.unstable' - unstable-packages = final: _prev: { - unstable = import inputs.nixpkgs-unstable { - system = final.system; - config.allowUnfree = true; - }; - }; -} -- cgit v1.2.3