Add zoxide; Refactor module imports for HM

This commit is contained in:
xqtc161 2024-07-02 14:31:10 +02:00
parent b9875568bd
commit 7528473bb3
3 changed files with 35 additions and 12 deletions

View file

@ -6,18 +6,7 @@
...
}: {
imports = [
./modules/nixvim.nix
./modules/shell.nix
./modules/firefox.nix
./modules/wm.nix
./modules/gtk.nix
./modules/qt.nix
./modules/home-pkgs.nix
./modules/git.nix
./modules/rofi.nix
./modules/spicetify.nix
./modules/yazi.nix
#./modules/ssh.nix
./modules
];
home.username = "xqtc";
home.homeDirectory = "/home/xqtc";

23
home/modules/default.nix Normal file
View file

@ -0,0 +1,23 @@
{
config,
pkgs,
lib,
inputs,
...
}: {
imports = [
./nixvim.nix
./shell.nix
./firefox.nix
./wm.nix
./gtk.nix
./qt.nix
./home-pkgs.nix
./git.nix
./rofi.nix
./spicetify.nix
./yazi.nix
./zoxide.nix
#./ssh.nix
];
}

11
home/modules/zoxide.nix Normal file
View file

@ -0,0 +1,11 @@
{
config,
lib,
inputs,
...
}: {
programs.zoxide = {
enable = true;
enableNushellIntegration = true;
};
}