infra/nix/os/profiles/common/pkg.nix
Stefan Junker 522d7279bd nix: set NIX_PATH per device versions at buildtime
Previously all devices would have NIX_PATH set on the common verion file
defindd in *nix/variables/versions.nix*. Now NIX_PATH is populated with
the versions of the respective device.
2020-10-16 22:31:01 +02:00

43 lines
559 B
Nix

{ config
, pkgs
, ... }:
{
imports = [
"${<home-manager-module>}/nixos"
];
home-manager.users.root = import ../../../home-manager/configuration/text-minimal.nix { inherit pkgs; };
nixpkgs.config = {
allowBroken = false;
allowUnfree = true;
packageOverrides = pkgs: with pkgs; {
};
};
environment.systemPackages = with pkgs; [
elfutils
exfat
file
tree
pwgen
proot
parted
pv
tmux
wget
curl
gitFull
pastebinit
gist
mr
usbutils
pciutils
podman
];
}