diff --git a/home/aly/default.nix b/home/aly/default.nix index 21b84b8f..2d7b1161 100644 --- a/home/aly/default.nix +++ b/home/aly/default.nix @@ -13,7 +13,7 @@ # Packages that should be installed to the user profile. home.packages = with pkgs; [ - vscode + vscode curl eza # A modern replacement for ‘ls’ fzf # A command-line fuzzy finder diff --git a/home/nixos/default.nix b/home/nixos/default.nix index 6310a13b..9756515c 100644 --- a/home/nixos/default.nix +++ b/home/nixos/default.nix @@ -5,7 +5,14 @@ ../common.nix ]; - # TODO please change the username & home directory to your own home.username = "nixos"; home.homeDirectory = "/home/nixos"; -} \ No newline at end of file + + # Packages that should be installed to the user profile. + home.packages = with pkgs; [ + vscode + gh + git + wget + ]; +}