Update flake

This commit is contained in:
Andreas Zweili 2022-11-17 18:15:27 +01:00
parent f2741061b3
commit 3f9cbf6806
1 changed files with 4 additions and 3 deletions

View File

@ -2,9 +2,7 @@
description = "A Python API for various tools I use at work.";
inputs = {
nixpkgs.url = github:NixOS/nixpkgs/nixos-22.05;
flake-utils = {
url = github:numtide/flake-utils;
};
flake-utils.url = github:numtide/flake-utils;
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
@ -23,5 +21,8 @@
pkgs.python39Packages.poetry
];
};
shellHook = ''
export DJANGO_SETTINGS_MODULE=network_inventory.settings.local
'';
});
}