Add host options & hotfixes. #3
3 changed files with 15 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ let
|
||||||
;
|
;
|
||||||
};
|
};
|
||||||
|
|
||||||
userPackagesConfig = import ../users/${hostName}/packages-config.nix { inherit lib; };
|
userPackagesConfig = import ../users/${hostName}/packages_config.nix { inherit lib; };
|
||||||
|
|
||||||
additionalArgs = { inherit inputs customFunctions userData; };
|
additionalArgs = { inherit inputs customFunctions userData; };
|
||||||
|
|
||||||
|
|
|
||||||
14
users/geekiot/packages_config.nix
Normal file
14
users/geekiot/packages_config.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
{ lib }:
|
||||||
|
{
|
||||||
|
allowUnfree = false;
|
||||||
|
allowBroken = false;
|
||||||
|
|
||||||
|
allowUnfreePredicate =
|
||||||
|
pkg:
|
||||||
|
builtins.elem (lib.getName pkg) [
|
||||||
|
"steam"
|
||||||
|
"steam-original"
|
||||||
|
"steam-unwrapped"
|
||||||
|
"steam-run"
|
||||||
|
];
|
||||||
|
}
|
||||||
Reference in a new issue