flake: dev-shells: convert to 'flake-parts'

This commit is contained in:
Bruno BELANYI 2023-03-08 18:01:37 +00:00
parent e1e6c39bf1
commit 2b969f7726
2 changed files with 13 additions and 14 deletions

View file

@ -26,8 +26,6 @@ let
default = self.apps.${system}.diff-flake; default = self.apps.${system}.diff-flake;
}; };
devShells = import ./dev-shells.nix inputs system;
packages = import ./packages.nix inputs system; packages = import ./packages.nix inputs system;
# Work-around for https://github.com/nix-community/home-manager/issues/3075 # Work-around for https://github.com/nix-community/home-manager/issues/3075
@ -73,6 +71,7 @@ flake-parts.lib.mkFlake { inherit inputs; } {
imports = [ imports = [
./checks.nix ./checks.nix
./dev-shells.nix
./lib.nix ./lib.nix
./nixos.nix ./nixos.nix
./overlays.nix ./overlays.nix

View file

@ -1,9 +1,7 @@
{ self, nixpkgs, ... }: { inputs, ... }:
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{ {
perSystem = { self', pkgs, ... }: {
devShells = {
default = pkgs.mkShell { default = pkgs.mkShell {
name = "NixOS-config"; name = "NixOS-config";
@ -12,6 +10,8 @@ in
nixpkgs-fmt nixpkgs-fmt
]; ];
inherit (self.checks.${system}.pre-commit) shellHook; inherit (self'.checks.pre-commit) shellHook;
};
};
}; };
} }