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