Move cachix configuration to flake.nix
This commit is contained in:
parent
de3573b88d
commit
66d750f196
|
@ -1,8 +0,0 @@
|
||||||
{
|
|
||||||
nix = {
|
|
||||||
binaryCaches = [ "https://nix-community.cachix.org" ];
|
|
||||||
binaryCachePublicKeys = [
|
|
||||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -108,7 +108,6 @@ with pkgs;
|
||||||
./modules/printing.nix
|
./modules/printing.nix
|
||||||
./modules/periodic.nix
|
./modules/periodic.nix
|
||||||
./modules/power.nix
|
./modules/power.nix
|
||||||
./modules/cachix.nix
|
|
||||||
./overlays/emacs.nix
|
./overlays/emacs.nix
|
||||||
./overlays/nix-direnv.nix
|
./overlays/nix-direnv.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,6 +1,15 @@
|
||||||
{
|
{
|
||||||
description = "System configuration for panacea";
|
description = "System configuration for panacea";
|
||||||
|
|
||||||
|
nixConfig = {
|
||||||
|
extra-substituters =
|
||||||
|
[ "https://cachix.cachix.org" "https://nix-community.cachix.org" ];
|
||||||
|
extra-trusted-public-keys = [
|
||||||
|
"cachix.cachix.org-1:eWNHQldwUO7G2VkjpnjDbWwy4KQ/HNxht7H4SSoMckM="
|
||||||
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "nixpkgs/nixos-unstable";
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||||
agenix.url = "github:ryantm/agenix";
|
agenix.url = "github:ryantm/agenix";
|
||||||
|
|
Loading…
Reference in New Issue