dotfiles/.config/nix/lib/mkCommon.nix

17 lines
229 B
Nix

{ pkgs, ... }:
let
custom = {
python = (pkgs.python312Full.withPackages (py: [
py.pip
py.tkinter
py.dnspython
]));
};
in {
inherit custom;
packages = [
pkgs.zsh
pkgs.home-manager
];
}