added small assortment of helpful packages to nixos live user

This commit is contained in:
Aly Raffauf 2024-03-06 18:15:25 -05:00
parent 02420d44c2
commit 2be765841e
2 changed files with 10 additions and 3 deletions

View file

@ -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

View file

@ -5,7 +5,14 @@
../common.nix
];
# TODO please change the username & home directory to your own
home.username = "nixos";
home.homeDirectory = "/home/nixos";
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
vscode
gh
git
wget
];
}