2023-07-25 22:42:47 +02:00
|
|
|
{ inputs, outputs, ... }:
|
|
|
|
{ lib, pkgs, config, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [ ];
|
|
|
|
|
|
|
|
options = { };
|
|
|
|
|
|
|
|
config = {
|
2023-09-06 20:32:42 +02:00
|
|
|
# # Add flake inputs to $NIX_PATH
|
|
|
|
# home.sessionVariables = {
|
|
|
|
# NIX_PATH =
|
|
|
|
# builtins.concatStringsSep
|
|
|
|
# ":"
|
|
|
|
# (lib.mapAttrsToList
|
|
|
|
# (name: input:
|
|
|
|
# "${name}=${input.sourceInfo.outPath}")
|
|
|
|
# inputs);
|
|
|
|
# };
|
2023-07-25 22:42:47 +02:00
|
|
|
|
2024-07-20 13:30:25 +02:00
|
|
|
# NOTE: now automatic, since we're doing `useGlobalPkgs = true`
|
|
|
|
#
|
|
|
|
# # Use flake overlays by default
|
|
|
|
# nixpkgs = {
|
|
|
|
# overlays = lib.attrValues outputs.overlays;
|
|
|
|
#
|
|
|
|
# config.allowUnfree = true;
|
|
|
|
# };
|
2023-07-25 22:42:47 +02:00
|
|
|
};
|
|
|
|
}
|