2015-10-23 01:26:53 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2018-11-03 19:33:58 +01:00
|
|
|
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;
|
2018-11-03 19:33:58 +01:00
|
|
|
|
2018-11-03 11:03:03 +01:00
|
|
|
nixpkgs.config = {
|
|
|
|
allowBroken = false;
|
|
|
|
allowUnfree = true;
|
|
|
|
|
|
|
|
packageOverrides = pkgs: with pkgs; {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-10-23 01:26:53 +02:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
elfutils
|
2016-05-23 00:38:03 +02:00
|
|
|
exfat
|
2015-10-23 01:26:53 +02:00
|
|
|
file
|
|
|
|
tree
|
|
|
|
pwgen
|
|
|
|
proot
|
|
|
|
|
|
|
|
parted
|
|
|
|
pv
|
|
|
|
tmux
|
|
|
|
wget
|
|
|
|
curl
|
|
|
|
|
2018-11-03 11:03:03 +01:00
|
|
|
gitFull
|
2015-10-23 01:26:53 +02:00
|
|
|
pastebinit
|
|
|
|
gist
|
2018-11-03 11:03:03 +01:00
|
|
|
mr
|
2015-10-23 01:26:53 +02:00
|
|
|
|
|
|
|
usbutils
|
|
|
|
pciutils
|
|
|
|
];
|
|
|
|
}
|