diff --git a/modules/software.nix b/modules/software.nix
new file mode 100644
index 0000000..fb061c9
--- /dev/null
+++ b/modules/software.nix
@@ -0,0 +1,30 @@
+{ config, lib, pkgs, ... }:
+
+{
+  environment.systemPackages = with pkgs; [
+    # Developement
+    git lorri
+    # Monitoring
+    htop
+    # Text editors
+    neovim emacs
+    # Terminal multiplexing
+    tmux tmuxp
+    # Password management
+    pass passff-host
+    # Browsers
+    firefox chromium
+    # LaTeX
+    tectonic pandoc
+  ];
+
+  # Fonts declaration
+  fonts = {
+    fonts = with pkgs; [
+      google-fonts
+      siji
+      cherry
+    ];
+  };
+
+}