summaryrefslogtreecommitdiff
path: root/flake.nix
blob: 8731e95b22a42d24ed5d5c328172e43b0a80bc6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  description = "Quentin Aristote's personal information.";

  inputs = {
    my-nixpkgs.url = "github:qaristote/my-nixpkgs";
    nixpkgs = {};
  };

  outputs = {
    flake-parts,
    my-nixpkgs,
    ...
  } @ inputs:
    flake-parts.lib.mkFlake {inherit inputs;} {
      imports = builtins.attrValues {inherit (my-nixpkgs.flakeModules) personal;};
      flake.lib.formatWith = attrs: import ./default.nix attrs;
    };
}