18 lines
432 B
Nix
18 lines
432 B
Nix
{ config, lib, pkgs, modulesPath, ... }:
|
|
{
|
|
|
|
# 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
|
|
htop
|
|
tree
|
|
usbutils
|
|
pciutils
|
|
efibootmgr
|
|
];
|
|
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
|
|
} |