mirror of
https://github.com/Cian-H/My_NixOS_Config.git
synced 2026-05-13 16:41:42 +01:00
53 lines
971 B
Nix
53 lines
971 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
unstablePkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./programs/yazi.nix
|
|
];
|
|
programs = {
|
|
home-manager.enable = true;
|
|
nushell = let
|
|
pkgStream = unstablePkgs;
|
|
in {
|
|
enable = true;
|
|
package = pkgStream.nushell;
|
|
plugins = with pkgStream.nushellPlugins; [
|
|
# bson
|
|
# desktop_notifications
|
|
formats
|
|
gstat
|
|
# highlight
|
|
polars
|
|
query
|
|
# semver
|
|
];
|
|
extraConfig = ''
|
|
source ~/.config/nushell/my_config/config.nu
|
|
'';
|
|
extraEnv = ''
|
|
source ~/.config/nushell/my_config/env.nu
|
|
'';
|
|
};
|
|
git.enable = true;
|
|
carapace = {
|
|
enable = true;
|
|
enableNushellIntegration = true;
|
|
};
|
|
zoxide = {
|
|
enable = true;
|
|
enableNushellIntegration = true;
|
|
};
|
|
lazygit = {
|
|
enable = true;
|
|
package = unstablePkgs.lazygit;
|
|
enableNushellIntegration = true;
|
|
};
|
|
};
|
|
}
|