diff --git a/base.nix b/base.nix index c720b4e..4897512 100644 --- a/base.nix +++ b/base.nix @@ -1,7 +1,7 @@ { config, pkgs, lib, inputs, ... }: { imports = [ - ./cachix.nix + ./cachix.nix # update with `cachix use --mode nixos -d . FOOBAR` ./profiles/locale-no.nix # results of 'nixos-generate-config' # nice to have if i just dump this flake into /etc/nixos on a clean install diff --git a/cachix/nix-community.nix b/cachix/nix-community.nix new file mode 100644 index 0000000..7fc4c65 --- /dev/null +++ b/cachix/nix-community.nix @@ -0,0 +1,13 @@ + +{ + nix = { + settings = { + substituters = [ + "https://nix-community.cachix.org" + ]; + trusted-public-keys = [ + "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" + ]; + }; + }; +}