infra/nix/os/profiles/common/pkg.nix

44 lines
541 B
Nix
Raw Normal View History

2019-03-06 00:05:48 +01:00
{ config
, pkgs
, ... }:
2015-10-23 01:26:53 +02:00
{
imports = [
"${<home-manager-module>}/nixos"
];
2019-01-26 13:41:51 +01:00
home-manager.users.root = import ../../../home-manager/configuration/text-minimal.nix;
nixpkgs.config = {
allowBroken = false;
allowUnfree = true;
packageOverrides = pkgs: with pkgs; {
};
};
2015-10-23 01:26:53 +02:00
environment.systemPackages = with pkgs; [
elfutils
exfat
2015-10-23 01:26:53 +02:00
file
tree
pwgen
proot
parted
pv
tmux
wget
curl
gitFull
2015-10-23 01:26:53 +02:00
pastebinit
gist
mr
2015-10-23 01:26:53 +02:00
usbutils
pciutils
podman
2015-10-23 01:26:53 +02:00
];
}