summaryrefslogtreecommitdiff
path: root/hosts/common.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-05-07 14:33:21 -0400
committerseth <[email protected]>2023-05-07 14:33:21 -0400
commit55dfba88206626d655bf9dace774ca7c25da4e1f (patch)
treee9aeb3d7b950779785670792cc5802ab8307f105 /hosts/common.nix
parente05a00463ad6fead0a8a5ad02adcf33f7bb3ce11 (diff)
nvim: use nil overlay to avoid evaluating flake inputs
Diffstat (limited to 'hosts/common.nix')
-rw-r--r--hosts/common.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/common.nix b/hosts/common.nix
index df9e6f0..3e2a7ca 100644
--- a/hosts/common.nix
+++ b/hosts/common.nix
@@ -2,7 +2,7 @@
inputs,
self,
}: let
- inherit (inputs) getchoo home-manager nixpkgs nixpkgsUnstable nur ragenix;
+ inherit (inputs) getchoo home-manager nil nixpkgs nixpkgsUnstable nur ragenix;
in {
personal = {
system = "x86_64-linux";
@@ -30,7 +30,7 @@ in {
};
nixpkgs = {
- overlays = [nur.overlay getchoo.overlays.default];
+ overlays = [nil.overlays.nil nur.overlay getchoo.overlays.default];
config.allowUnfree = true;
};