1
Fork 0
nixos-system-config/packages/sets/basic.nix
2024-06-09 22:11:13 +02:00

16 lines
202 B
Nix

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