♻ refactor(zoxide): Move zoxide into its own submodule
This commit is contained in:
parent
af06a4e3f0
commit
747e024f7f
3 changed files with 8 additions and 6 deletions
|
@ -44,6 +44,7 @@
|
||||||
./xdg
|
./xdg
|
||||||
./xsession
|
./xsession
|
||||||
./zathura
|
./zathura
|
||||||
|
./zoxide
|
||||||
];
|
];
|
||||||
|
|
||||||
# This value determines the Home Manager release that your configuration is
|
# This value determines the Home Manager release that your configuration is
|
||||||
|
|
|
@ -27,10 +27,4 @@
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.zoxide = {
|
|
||||||
enable = true;
|
|
||||||
|
|
||||||
options = ["--cmd cd"];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
7
home/zoxide/default.nix
Normal file
7
home/zoxide/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{...}: {
|
||||||
|
programs.zoxide = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
options = ["--cmd cd"];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue