12 lines
145 B
Nix
12 lines
145 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
fastfetch
|
|
wget
|
|
unzip
|
|
git
|
|
tree
|
|
dos2unix
|
|
];
|
|
}
|