diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 25 |
1 files changed, 15 insertions, 10 deletions
@@ -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 { }; + }; }; } |
