From 84073038e22d3201ac0176a94527c040bb153e9e Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Tue, 4 Jun 2024 14:08:26 +0530 Subject: home, os: move user pkgs to home --- home/common/home.nix | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'home/common/home.nix') diff --git a/home/common/home.nix b/home/common/home.nix index b2ca191..c103a3f 100644 --- a/home/common/home.nix +++ b/home/common/home.nix @@ -1,4 +1,4 @@ -{ config, ... }: let +{ config, pkgs, ... }: let username = config.global.userdata.name; in { imports = [ @@ -7,10 +7,22 @@ in { ]; programs.home-manager.enable = true; - home = { inherit username; stateVersion = "24.11"; homeDirectory = "/home/${config.home.username}"; + + packages = with pkgs; [ + unzip + htop + curl + file + dig + tcpdump + mtr + nnn + ps_mem + geoipWithDatabase + ]; }; } -- cgit v1.2.3