about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-03-09 18:33:36 -0800
committerFranck Cuny <franck@fcuny.net>2022-03-09 18:33:36 -0800
commit02e9a2a8e9ec8d5eb1e784132189e44b23a920ae (patch)
tree842af853b75cc4705523744201a6425334398aac
parentgitea: initial configuration (diff)
downloadworld-02e9a2a8e9ec8d5eb1e784132189e44b23a920ae.tar.gz
system: install sqlite
It's always useful to have it around.
Diffstat (limited to '')
-rw-r--r--hosts/common/system/software.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/hosts/common/system/software.nix b/hosts/common/system/software.nix
index 63643e9..9cdce01 100644
--- a/hosts/common/system/software.nix
+++ b/hosts/common/system/software.nix
@@ -1,9 +1,8 @@
-{pkgs, config, lib, ...}:
+{ pkgs, config, lib, ... }:
 
 with lib;
 
-let
-  linuxpkgs = config.boot.kernelPackages;
+let linuxpkgs = config.boot.kernelPackages;
 in {
   environment.systemPackages = with pkgs; [
     binutils
@@ -30,6 +29,7 @@ in {
     perf-tools
     powertop
     rsync
+    sqlite
     strace
     tcpdump
     tmux