Stuff
This commit is contained in:
parent
774908425d
commit
02fca8be4c
9 changed files with 88 additions and 41 deletions
18
flake.nix
18
flake.nix
|
@ -5,12 +5,14 @@
|
|||
flake-parts.url = "github:hercules-ci/flake-parts";
|
||||
emacs-overlay.url = "github:nix-community/emacs-overlay";
|
||||
nixpkgs.follows = "emacs-overlay/nixpkgs";
|
||||
indent-bars = {
|
||||
# TODO remove when it lands on (M)ELPA
|
||||
url = "github:jdtsmith/indent-bars";
|
||||
flake = false;
|
||||
};
|
||||
};
|
||||
|
||||
outputs = inputs @ {
|
||||
flake-parts,
|
||||
...
|
||||
} :
|
||||
|
||||
outputs = inputs @ {flake-parts, ...}:
|
||||
flake-parts.lib.mkFlake {inherit inputs;} {
|
||||
systems = ["x86_64-linux"];
|
||||
imports = [
|
||||
|
@ -18,20 +20,14 @@
|
|||
./hmModules
|
||||
./formatter
|
||||
./diff-closures
|
||||
./hydra
|
||||
];
|
||||
};
|
||||
nixConfig = {
|
||||
extra-substituters = [
|
||||
"https://aciceri-emacs.cachix.org"
|
||||
"https://nix-community.cachix.org"
|
||||
];
|
||||
extra-trusted-public-keys = [
|
||||
"aciceri-emacs.cachix.org-1:kxDGDFWV6LUj41tb8xmPRBI56UJSZOVveN49LZDUKdA="
|
||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
Reference in a new issue