used formatter

This commit is contained in:
Kristian Krsnik 2023-07-27 13:34:55 +02:00
parent 28901f25f1
commit b49f8a6a03

View File

@ -5,20 +5,19 @@
nixpkgs.url = github:nixos/nixpkgs/nixos-23.05; nixpkgs.url = github:nixos/nixpkgs/nixos-23.05;
}; };
outputs = { outputs = { self, nixpkgs }:
self, let
nixpkgs, supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];
}: let
supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"];
forAllSystems = nixpkgs.lib.genAttrs supportedSystems; forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
pkgs = forAllSystems (system: nixpkgs.legacyPackages.${system}); pkgs = forAllSystems (system: nixpkgs.legacyPackages.${system});
in { in {
# Formatter # Formatter
formatter = forAllSystems (system: nixpkgs.legacyPackages.${system}.alejandra); formatter = forAllSystems (system: nixpkgs.legacyPackages.${system}.alejandra);
# Packages # Packages
packages = forAllSystems (system: { packages = forAllSystems (system: {
default = pkgs.${system}.poetry2nix.mkPoetryApplication {projectDir = self;}; default = pkgs.${system}.poetry2nix.mkPoetryApplication { projectDir = self; };
}); });
# Dev Shell # Dev Shell
@ -27,9 +26,10 @@
shellHook = "Welcome to your nix-powered dev environment for dyn-gandi!"; shellHook = "Welcome to your nix-powered dev environment for dyn-gandi!";
packages = with pkgs.${system}; [ packages = with pkgs.${system}; [
(poetry2nix.mkPoetryEnv {projectDir = self;}) (poetry2nix.mkPoetryEnv { projectDir = self; })
poetry poetry
]; ];
}; };
}); });