* disable CPU wining * migrate system packages away to out-of-tree home-manger * vim: disable deoplete * enable the firewall * upgrade syntax for release 18.03 * enable gnome services (again)
26 lines
270 B
Nix
26 lines
270 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Package configuration
|
|
environment.systemPackages = with pkgs; [
|
|
elfutils
|
|
exfat
|
|
file
|
|
tree
|
|
pwgen
|
|
proot
|
|
|
|
parted
|
|
pv
|
|
tmux
|
|
wget
|
|
curl
|
|
|
|
git
|
|
pastebinit
|
|
gist
|
|
|
|
usbutils
|
|
pciutils
|
|
];
|
|
}
|