summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix25
1 files changed, 15 insertions, 10 deletions
diff --git a/flake.nix b/flake.nix
index 7a8a7e9..f1c3559 100644
--- a/flake.nix
+++ b/flake.nix
@@ -2,18 +2,23 @@
description = "Quentin Aristote's personal information.";
inputs = {
- my-nixpkgs.url = "github:qaristote/my-nixpkgs";
- nixpkgs = {};
+ my-nixpkgs.url = "git+https://git.aristote.fr/nix/my-nixpkgs";
+ nixpkgs = { };
};
- outputs = {
- flake-parts,
- my-nixpkgs,
- ...
- } @ inputs:
- flake-parts.lib.mkFlake {inherit inputs;} {
- imports = builtins.attrValues {inherit (my-nixpkgs.flakeModules) personal;};
+ 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;
- perSystem = {pkgs, ...}: {packages.src = pkgs.callPackage ./src.nix {};};
+ perSystem =
+ { pkgs, ... }:
+ {
+ packages.src = pkgs.callPackage ./src.nix { };
+ };
};
}