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,
|
config,
|
||||||
lib,
|
lib,
|
||||||
inputs,
|
inputs,
|
||||||
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
|
@ -38,6 +39,21 @@
|
||||||
|
|
||||||
### Default Programs
|
### Default Programs
|
||||||
environment.defaultPackages = [];
|
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.dconf.enable = true;
|
||||||
programs.nano.enable = false; # make sure to add another editor and set the $EDITOR variable
|
programs.nano.enable = false; # make sure to add another editor and set the $EDITOR variable
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
|
|
Loading…
Reference in a new issue