2019-03-06 00:05:48 +01:00
|
|
|
{ config
|
|
|
|
, pkgs
|
|
|
|
, ... }:
|
2015-10-23 01:26:53 +02:00
|
|
|
|
|
|
|
{
|
2018-11-03 19:33:58 +01:00
|
|
|
imports = [
|
2019-03-06 00:04:09 +01:00
|
|
|
"${<home-manager-module>}/nixos"
|
2018-11-03 19:33:58 +01:00
|
|
|
];
|
2020-10-16 22:31:01 +02:00
|
|
|
home-manager.users.root = import ../../../home-manager/configuration/text-minimal.nix { inherit pkgs; };
|
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
|
2019-01-27 00:27:32 +01:00
|
|
|
|
|
|
|
podman
|
2015-10-23 01:26:53 +02:00
|
|
|
];
|
|
|
|
}
|