nixos: add a list of default programs
This commit is contained in:
parent
fa0e9ccc74
commit
4cecc06627
1 changed files with 16 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
|||
config,
|
||||
lib,
|
||||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
|
@ -38,6 +39,21 @@
|
|||
|
||||
### Default Programs
|
||||
environment.defaultPackages = [];
|
||||
# In addtion of https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/config/system-path.nix
|
||||
environment.systemPackages = with pkgs; [
|
||||
unzip
|
||||
wget
|
||||
tree
|
||||
file
|
||||
htop
|
||||
|
||||
lsof
|
||||
ltrace
|
||||
|
||||
dnsutils
|
||||
pciutils
|
||||
usbutils
|
||||
];
|
||||
programs.dconf.enable = true;
|
||||
programs.nano.enable = false; # make sure to add another editor and set the $EDITOR variable
|
||||
programs.neovim = {
|
||||
|
|
Loading…
Reference in a new issue