Files
nixos/home/hosts/lithic/default.nix
T
Greg Hellings 6a0c87b77d
buildbot/nix-eval Build done. (10 warnings)
buildbot/nix-build Build done.
buildbot/nix-effects Build done.
feat: add dockerCompat package from podman
2026-06-11 09:20:19 -05:00

81 lines
1.2 KiB
Nix

{
pkgs,
pkgs',
lib,
...
}:
let
python = pkgs.python312.withPackages (
p: with p; [
ipython
]
);
in
{
# Disables hitting local cache
_module.args.cache = lib.mkForce false;
greg = {
development = true;
gui = true;
nix.cache = false;
zed = true;
};
home = {
packages = with pkgs; [
ansible
awscli2
cargo
clippy
direnv
pkgs'.dockerCompat
go
home-manager
just
mcp-grafana
nil
nixVersions.stable
podman
podman-compose
poetry
pre-commit
(pulumi.withPackages (
p: with p; [
pulumi-aws-native
pulumi-command
pulumi-go
pulumi-nodejs
pulumi-python
]
))
python
rustc
rustfmt
terraform
];
};
programs = {
direnv = {
enable = true;
enableNushellIntegration = true;
};
nushell = {
enable = true;
};
starship = {
enable = true;
enableNushellIntegration = true;
settings = {
directory = {
home_symbol = "~";
truncate_to_repo = false;
truncation_length = 0;
use_os_path_sep = true;
};
};
};
};
}