Migrate back to gccemacs with build cache
This commit is contained in:
parent
1e752b7b71
commit
1f5d0dc707
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
nix = {
|
||||||
|
binaryCaches = [ "https://nix-community.cachix.org" ];
|
||||||
|
binaryCachePublicKeys = [
|
||||||
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -104,6 +104,8 @@
|
||||||
./modules/printing.nix
|
./modules/printing.nix
|
||||||
./modules/periodic.nix
|
./modules/periodic.nix
|
||||||
./modules/power.nix
|
./modules/power.nix
|
||||||
|
./modules/cachix.nix
|
||||||
|
./overlays/emacs-overlay.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
# WARN: this file will get overwritten by $ cachix use <name>
|
||||||
|
{ pkgs, lib, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
folder = ../cachix;
|
||||||
|
toImport = name: value: folder + ("/" + name);
|
||||||
|
filterCaches = key: value: value == "regular" && lib.hasSuffix ".nix" key;
|
||||||
|
imports = lib.mapAttrsToList toImport
|
||||||
|
(lib.filterAttrs filterCaches (builtins.readDir folder));
|
||||||
|
in {
|
||||||
|
inherit imports;
|
||||||
|
nix.binaryCaches = [ "https://cache.nixos.org/" ];
|
||||||
|
}
|
|
@ -20,7 +20,7 @@
|
||||||
haskellPackages.pandoc-citeproc
|
haskellPackages.pandoc-citeproc
|
||||||
# Text editors
|
# Text editors
|
||||||
neovim
|
neovim
|
||||||
emacs
|
emacsGcc
|
||||||
ripgrep
|
ripgrep
|
||||||
fd
|
fd
|
||||||
clang
|
clang
|
||||||
|
@ -77,6 +77,8 @@
|
||||||
## Python
|
## Python
|
||||||
nodePackages.pyright
|
nodePackages.pyright
|
||||||
black
|
black
|
||||||
|
# Overlays
|
||||||
|
cachix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Fonts declaration
|
# Fonts declaration
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(import (builtins.fetchTarball {
|
||||||
|
url = https://github.com/nix-community/emacs-overlay/archive/master.tar.gz;
|
||||||
|
}))
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue