summaryrefslogtreecommitdiff
path: root/nix/dev.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-09-06 18:51:30 -0400
committerseth <[email protected]>2023-09-07 11:50:26 -0400
commit0f3a367d27c909b803baf0185d0b6e0ade968c3a (patch)
tree03b1b04127029289c1356bf2c0597b5aa8a37aec /nix/dev.nix
parent8d8dc0896fc8c7f0d2f10087db39cac4e3149c66 (diff)
flake: start using flake-parts + add vm test
Diffstat (limited to 'nix/dev.nix')
-rw-r--r--nix/dev.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/nix/dev.nix b/nix/dev.nix
new file mode 100644
index 0000000..b394c6c
--- /dev/null
+++ b/nix/dev.nix
@@ -0,0 +1,41 @@
+{
+ inputs,
+ self,
+ withSystem,
+ ...
+}: {
+ perSystem = {
+ config,
+ pkgs,
+ ...
+ }: {
+ pre-commit = {
+ settings.hooks = {
+ isort.enable = true;
+ pylint.enable = true;
+ yapf = {
+ enable = true;
+ name = "yapf";
+ entry = "${pkgs.python311Packages.yapf}/bin/yapf -i";
+ types = ["file" "python"];
+ };
+ };
+ };
+
+ devShells.default = pkgs.mkShell {
+ shellHook = config.pre-commit.installationScript;
+ packages = [
+ (pkgs.python311.withPackages (p: with p; [isort yapf pylint]))
+ ];
+ };
+ };
+
+ flake.tests.x86_64-linux.module = withSystem "x86_64-linux" ({pkgs, ...}:
+ (import (inputs.nixpkgs + "/nixos/lib") {}).runTest {
+ imports = [./vm.nix];
+
+ hostPkgs = pkgs;
+
+ _module.args = {inherit self;};
+ });
+}