16 lines
202 B
Nix
16 lines
202 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
security.sudo.extraConfig = ''
|
|
Defaults lecture="never"
|
|
'';
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
fastfetch
|
|
wget
|
|
unzip
|
|
git
|
|
tree
|
|
dos2unix
|
|
];
|
|
}
|