aboutsummaryrefslogtreecommitdiff
path: root/home/nix.nix
blob: 5c0aec65b74a3e6aa78ed9b8a404a598d565b566 (plain)
1
2
3
4
5
6
7
8
9
{ config, pkgs, ... }:

{
  xdg.configFile."nix/nix.conf".text = ''
    experimental-features = nix-command flakes
    substituters = https://cache.nixos.org https://nix-community.cachix.org
    trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCUSBd4=
  '';
}