dotfiles/hosts/thinkpad/dev.nix

24 lines
322 B
Nix
Raw Normal View History

2024-04-28 11:35:35 +02:00
{ pkgs, ... }:
{
# enable docker
virtualisation.docker.rootless = {
enable = true;
setSocketVariable = true;
};
environment.systemPackages = with pkgs; [
# tools
git # version control
#containers
docker
docker-compose
# nix pkg fetcher
nurl
#nix-init
2024-12-05 07:02:26 +01:00
postman
2024-04-28 11:35:35 +02:00
];
2024-05-18 01:10:04 +02:00
2024-04-28 11:35:35 +02:00
}