Added a first bunch of applications
This commit is contained in:
parent
ec1d842bb4
commit
e124978876
2 changed files with 44 additions and 5 deletions
|
|
@ -109,7 +109,7 @@
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||||||
# wget
|
wget
|
||||||
tmux
|
tmux
|
||||||
neovim
|
neovim
|
||||||
git
|
git
|
||||||
|
|
|
||||||
|
|
@ -21,15 +21,54 @@
|
||||||
|
|
||||||
# The home.packages option allows you to install Nix packages into your
|
# The home.packages option allows you to install Nix packages into your
|
||||||
# environment.
|
# environment.
|
||||||
home.packages = [
|
home.packages = with pkgs; [
|
||||||
# # Adds the 'hello' command to your environment. It prints a friendly
|
# # Adds the 'hello' command to your environment. It prints a friendly
|
||||||
# # "Hello, world!" when run.
|
# # "Hello, world!" when run.
|
||||||
# pkgs.hello
|
# pkgs.hello
|
||||||
|
|
||||||
pkgs.cowsay
|
# Terminal
|
||||||
|
alacritty
|
||||||
|
source-code-pro # Font for Alacritty
|
||||||
|
cutecom
|
||||||
|
cowsay
|
||||||
|
|
||||||
pkgs.alacritty
|
# Network
|
||||||
pkgs.source-code-pro # Font for Alacritty
|
nextcloud-client
|
||||||
|
|
||||||
|
# Internet
|
||||||
|
amfora # Gemini terminal browser
|
||||||
|
lagrange # Graphical Gemini client
|
||||||
|
linphone
|
||||||
|
rustdesk
|
||||||
|
zoom-us
|
||||||
|
|
||||||
|
# Knowledge management
|
||||||
|
logseq
|
||||||
|
|
||||||
|
# Office
|
||||||
|
libreoffice-fresh
|
||||||
|
drawio
|
||||||
|
gimp
|
||||||
|
inkscape-with-extensions
|
||||||
|
|
||||||
|
# Multimedia
|
||||||
|
asunder # CD ripper
|
||||||
|
tenacity
|
||||||
|
vlc
|
||||||
|
#gnome.gnome-sound-recorder
|
||||||
|
|
||||||
|
# Development
|
||||||
|
arduino
|
||||||
|
arduino-cli
|
||||||
|
kicad
|
||||||
|
|
||||||
|
# 3D Printing
|
||||||
|
freecad
|
||||||
|
openscad
|
||||||
|
cura
|
||||||
|
|
||||||
|
# Games
|
||||||
|
dosbox-staging
|
||||||
|
|
||||||
# # It is sometimes useful to fine-tune packages, for example, by applying
|
# # It is sometimes useful to fine-tune packages, for example, by applying
|
||||||
# # overrides. You can do that directly here, just don't forget the
|
# # overrides. You can do that directly here, just don't forget the
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue