add packages

This commit is contained in:
Aditya 2024-04-11 10:18:03 +05:30
parent 51075ae4b7
commit 3933f8881c
Signed by: aditya
SSH key fingerprint: SHA256:jL1IvWsjjlPtw6HvDIHfXfhO9IkIokNEyIfuFhSdoyU
3 changed files with 8 additions and 8 deletions

View file

@ -92,14 +92,6 @@
};
};
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
wget
git
];
programs.neovim = {
enable = true;
defaultEditor = true;

View file

@ -9,6 +9,7 @@
./kernel
./locale
./networking
./packages
./sound
./virtualisation
];

View file

@ -0,0 +1,7 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
vim
wget
git
];
}