diff options
author | sinanmohd <sinan@sinanmohd.com> | 2023-06-27 20:17:35 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2023-07-01 08:54:34 +0530 |
commit | f792b822d8f9e2b5345e3c2343593ba2feb76029 (patch) | |
tree | 68856b3ecf2df97daf026203c66f0f70cba204ae | |
parent | 08eb7395497825a246c53de5b42b22fa12b7f00d (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 |