Added proper cachix support

This commit is contained in:
2024-05-06 11:14:36 -03:00
parent 0a8e8235cc
commit b22afe011d

View File

@@ -3,7 +3,15 @@
pkgs,
...
}: {
nix.settings.experimental-features = ["nix-command" "flakes"];
nix.settings = {
experimental-features = ["nix-command" "flakes"];
substituters = [
"https://nix-community.cachix.org"
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
# Enable CUPS to print documents.
services.printing.enable = true;