30 lines
493 B
Nix
30 lines
493 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
# enable docker
|
||
|
virtualisation.docker.rootless = {
|
||
|
enable = true;
|
||
|
setSocketVariable = true;
|
||
|
};
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
# tools
|
||
|
git # version control
|
||
|
neovim # cli editor
|
||
|
beekeeper-studio # mysql postgres ... client
|
||
|
insomnia # http client
|
||
|
ungoogled-chromium # for testing vite projects
|
||
|
|
||
|
#containers
|
||
|
docker
|
||
|
docker-compose
|
||
|
|
||
|
#formatters
|
||
|
nixpkgs-fmt
|
||
|
|
||
|
# nix pkg fetcher
|
||
|
nurl
|
||
|
nix-init
|
||
|
|
||
|
|
||
|
];
|
||
|
}
|