15 lines
197 B
Nix
15 lines
197 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
wget
|
||
|
curl
|
||
|
networkmanager
|
||
|
neovim
|
||
|
];
|
||
|
|
||
|
fonts.enableDefaultFonts = true;
|
||
|
|
||
|
services.printing.enable = true;
|
||
|
}
|