mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-21 11:52:52 +00:00
add packages
This commit is contained in:
parent
51075ae4b7
commit
3933f8881c
3 changed files with 8 additions and 8 deletions
|
@ -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;
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
./kernel
|
||||
./locale
|
||||
./networking
|
||||
./packages
|
||||
./sound
|
||||
./virtualisation
|
||||
];
|
||||
|
|
7
modules/nixos/packages/default.nix
Normal file
7
modules/nixos/packages/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
vim
|
||||
wget
|
||||
git
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue