diff options
author | sinanmohd <sinan@firemail.cc> | 2023-06-27 20:17:35 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-07-01 08:54:34 +0530 |
commit | ba8049e7cf1381c7ad489430f8d1d7f56db109c5 (patch) | |
tree | 68856b3ecf2df97daf026203c66f0f70cba204ae | |
parent | f212b7088607e4391c13491167b855d40cba6dd9 (diff) |
pkgs: add file, tmux, openssl, and git to systemPackages
-rw-r--r-- | configuration.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configuration.nix b/configuration.nix index 0fdcc54..934f0d2 100644 --- a/configuration.nix +++ b/configuration.nix @@ -24,8 +24,6 @@ isNormalUser = true; extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. packages = with pkgs; [ - git - tmux w3m neofetch ]; @@ -34,6 +32,10 @@ # system environment.systemPackages = with pkgs; [ + tmux + file + openssl + git htop curl neovim |