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

48 lines
823 B
Nix
Raw Normal View History

2015-10-23 01:26:53 +02:00
{ config, pkgs, ... }:
{
imports = [
"${builtins.fetchGit { url = "https://github.com/rycee/home-manager.git"; ref = "master"; }}/nixos"
];
home-manager.users.root = import ../../../home-manager/configuration/text-minimal.txt;
nixpkgs.config = {
allowBroken = false;
allowUnfree = true;
packageOverrides = pkgs: with pkgs; {
busyboxStatic = busybox.override {
enableStatic = true;
extraConfig = ''
CONFIG_STATIC y
CONFIG_INSTALL_APPLET_DONT y
CONFIG_INSTALL_APPLET_SYMLINKS n
'';
};
};
};
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
];
}