unfree per device

This commit is contained in:
twoneis 2025-03-03 15:03:50 +01:00
parent 444a4cb511
commit 5d67f7c33d
2 changed files with 6 additions and 4 deletions

View file

@ -9,7 +9,12 @@ in {
./options.nix
];
nixpkgs.hostPlatform = "x86_64-linux";
nixpkgs = {
hostPlatform = "x86_64-linux";
config = {
allowUnfree = true;
};
};
networking.hostName = "inkvine";

View file

@ -22,9 +22,6 @@
inputs.niri.overlays.niri
inputs.nix-alien.overlays.default
];
config = {
allowUnfree = true;
};
};
environment.systemPackages = [inputs.alejandra.defaultPackage.${pkgs.system}];
}