mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 11:26:12 +01:00
22 lines
374 B
Nix
22 lines
374 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
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
|
|
ntfs3g
|
|
dosfstools
|
|
unstable.nh
|
|
nix-output-monitor
|
|
nvd
|
|
xorg.xrandr
|
|
]);
|
|
|
|
fonts.packages = with pkgs; [ nerdfonts ];
|
|
}
|