Add host options & hotfixes. #3

Merged
geekiot merged 4 commits from features into develop 2025-09-27 15:24:51 +05:00
3 changed files with 15 additions and 1 deletions
Showing only changes of commit 83abf471a4 - Show all commits

View file

@ -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; };

View file

@ -0,0 +1,14 @@
{ lib }:
{
allowUnfree = false;
allowBroken = false;
allowUnfreePredicate =
pkg:
builtins.elem (lib.getName pkg) [
"steam"
"steam-original"
"steam-unwrapped"
"steam-run"
];
}