dotfiles/etc/dev.nix
2005 27d55ea981 🔧 few moderate changes
more polybar capsules
readme: added showcase for alacritty and other stuff
added theme skin for element
alacritty shades of purple theme
user.js: tryed to limit firefox for 165hz but still runs at 60fps
added gimp
added nvim config, soon i'll be switching to it
2024-06-11 20:09:58 +02:00

35 lines
564 B
Nix
Executable file

{ 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
# for 3d
#blender
#dbus
#xdg-utils
#xdg-launch
];
}