mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2025-02-21 07:20:01 +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 = {
|
programs.neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultEditor = true;
|
defaultEditor = true;
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
./kernel
|
./kernel
|
||||||
./locale
|
./locale
|
||||||
./networking
|
./networking
|
||||||
|
./packages
|
||||||
./sound
|
./sound
|
||||||
./virtualisation
|
./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