* Remove optionals in darwin configuration since it's now a darwin-only config * Move zoxide to common
18 lines
245 B
Nix
18 lines
245 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
|
|
pkgs.zoxide
|
|
];
|
|
}
|