27 lines
492 B
Nix
27 lines
492 B
Nix
|
|
{ config, pkgs, ... }:
|
|
{
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
wget lshw openssh bc scrot zsh unzip zip file which vim gnumake tmux
|
|
gitAndTools.gitFull
|
|
dmenu i3lock polybar
|
|
mplayer
|
|
gnome3.dconf
|
|
pulseaudioLight pavucontrol paprefs
|
|
docker
|
|
firefox
|
|
usbutils ntfs3g
|
|
exfat-utils gsmartcontrol
|
|
powerline-fonts
|
|
networkmanagerapplet
|
|
xorg.xbacklight
|
|
xfontsel
|
|
font-manager
|
|
utf8proc
|
|
font-awesome-ttf
|
|
pam_u2f
|
|
];
|
|
}
|