bump: agenix

This commit is contained in:
Infinidoge 2024-02-27 12:41:30 -05:00
parent 6f945ae847
commit e4cd562742
Signed by: Infinidoge
SSH key fingerprint: SHA256:oAMyvotlNFraMmZmr+p6AxnNfW/GioTs1pOn3V4tQ7A
3 changed files with 23 additions and 3 deletions

9
flake.lock generated
View file

@ -10,14 +10,17 @@
],
"nixpkgs": [
"nixpkgs"
],
"systems": [
"systems"
]
},
"locked": {
"lastModified": 1703107199,
"narHash": "sha256-Xx9Kkoqye520mkEWTZx/sKQRJsIeWOuwoh568uwHpNg=",
"lastModified": 1707830867,
"narHash": "sha256-PAdwm5QqdlwIqGrfzzvzZubM+FXtilekQ/FA0cI49/o=",
"owner": "ryantm",
"repo": "agenix",
"rev": "17090d105af1b9f941109c1e12d6e3a596657f97",
"rev": "8cb01a0e717311680e0cbca06a76cbceba6f3ed6",
"type": "github"
},
"original": {

View file

@ -56,6 +56,7 @@
## Follow systems
systems.url = "github:nix-systems/default";
agenix.inputs.systems.follows = "systems";
devshell.inputs.systems.follows = "systems";
flake-utils.inputs.systems.follows = "systems";
universe-cli.inputs.systems.follows = "systems";

View file

@ -0,0 +1,16 @@
{ ... }:
{
programs.zoxide = {
enable = true;
options = [
"--cmd cd"
"--hook pwd"
];
enableBashIntegration = true;
enableFishIntegration = true;
enableNushellIntegration = true;
enableZshIntegration = true;
};
}