nixos-config/common/system.nix

15 lines
197 B
Nix
Raw Normal View History

2019-10-19 12:55:35 +02:00
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
wget
curl
networkmanager
neovim
];
fonts.enableDefaultFonts = true;
services.printing.enable = true;
}