treewide: fix evaluation warnings
Some checks failed
Check flake / build-amd64-linux (push) Failing after 1m3s

This commit is contained in:
2026-01-10 14:27:26 +00:00
parent c182c633cc
commit 816eb25479
4 changed files with 6 additions and 8 deletions

View File

@@ -86,7 +86,6 @@
nix-topology = {
url = "github:oddlama/nix-topology";
inputs.nixpkgs.follows = "nixpkgs";
inputs.pre-commit-hooks.follows = "pre-commit-hooks";
};
pre-commit-hooks = {

View File

@@ -30,7 +30,7 @@
config = {
allowUnfree = true;
};
system = final.system;
system = final.stdenv.hostPlatform.system;
};
})
(import ../overlays/default.nix)

View File

@@ -17,6 +17,9 @@
email = "jordan@vimium.com";
name = "Jordan Holt";
};
rebase.autosquash = true;
push.default = "current";
pull.rebase = true;
};
ignores = [
".Trash-*"
@@ -37,10 +40,5 @@
key = "B8CFFF61F1CCF520";
signByDefault = true;
};
extraConfig = {
rebase.autosquash = true;
push.default = "current";
pull.rebase = true;
};
};
}

View File

@@ -1,6 +1,7 @@
{
lib,
pkgs,
config,
...
}:
let
@@ -19,7 +20,7 @@ in
strategy = [ "completion" ];
};
defaultKeymap = "viins";
dotDir = ".config/zsh";
dotDir = "${config.xdg.configHome}/zsh";
enableCompletion = true;
enableVteIntegration = true;