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

41 lines
543 B
Nix
Raw Normal View History

2015-10-23 01:26:53 +02:00
{
2023-02-07 18:24:28 +01:00
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;
2023-02-07 18:24:28 +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
];
}