diff options
author | Franck Cuny <franck@fcuny.net> | 2022-03-09 18:33:36 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-03-09 18:33:36 -0800 |
commit | 02e9a2a8e9ec8d5eb1e784132189e44b23a920ae (patch) | |
tree | 842af853b75cc4705523744201a6425334398aac /hosts | |
parent | gitea: initial configuration (diff) | |
download | world-02e9a2a8e9ec8d5eb1e784132189e44b23a920ae.tar.gz |
system: install sqlite
It's always useful to have it around.
Diffstat (limited to '')
-rw-r--r-- | hosts/common/system/software.nix | 6 |
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 |