nixos/shell.nix
Andreas Zweili 21f3477e67 Remove nix-output-monitor
It looks nice but causes some problems with tmux and doesn't work properly on
23.11 for me.
2023-12-04 17:24:24 +01:00

22 lines
426 B
Nix

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
name = "nixosbuildshell";
nativeBuildInputs = with pkgs; [
git
nixFlakes
python310
python310Packages.black
python310Packages.mypy
python310Packages.pylint
qtile
vim
];
shellHook = ''
PATH=${pkgs.writeShellScriptBin "nix" ''
${pkgs.nixFlakes}/bin/nix --experimental-features "nix-command flakes" "$@"
''}/bin:$PATH
'';
}