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

42 lines
606 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"
];
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
];
}