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

40 lines
549 B
Nix
Raw Normal View History

2022-10-31 11:04:38 +01:00
{ config, pkgs, ... }:
2015-10-23 01:26:53 +02:00
{
2022-10-31 11:04:38 +01:00
imports = [ "${<home-manager-module>}/nixos" ];
home-manager.users.root =
import ../../../home-manager/configuration/text-minimal.nix {
inherit pkgs;
};
nixpkgs.config = {
allowBroken = false;
allowUnfree = true;
2022-10-31 11:04:38 +01:00
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
];
}