1
0
Fork 0

Allow unfree packages on all systems

This commit is contained in:
Avery 2025-06-28 15:50:33 +00:00
parent b3e10f04ba
commit 00952689aa
Signed by: Avery
GPG key ID: B684FD451B692E04
3 changed files with 4 additions and 4 deletions

View file

@ -12,7 +12,10 @@
lib.mkDefault config.hardware.enableRedistributableFirmware;
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
nixpkgs = {
config.allowUnfree = true;
hostPlatform = lib.mkDefault "x86_64-linux";
};
users = {
defaultUserShell = pkgs.zsh;