tree-wide change. seperated config from 'real' modles.
This commit is contained in:
parent
3eee4e105d
commit
a0c1ad0beb
59 changed files with 377 additions and 424 deletions
40
configs/home-manager/nushell/default.nix
Normal file
40
configs/home-manager/nushell/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
home.file = {
|
||||
".config/nushell/completions".source = ./completions;
|
||||
};
|
||||
|
||||
programs = {
|
||||
#sessionVariables, sessionPath and shellAliases are not applied to nushell.
|
||||
nushell = {
|
||||
enable = true;
|
||||
configFile.source = ./config.nu;
|
||||
envFile.source = ./env.nu;
|
||||
};
|
||||
|
||||
yazi.enableNushellIntegration = true;
|
||||
zoxide.enableNushellIntegration = true;
|
||||
starship.enableNushellIntegration = true;
|
||||
eza.enableNushellIntegration = true;
|
||||
carapace = {
|
||||
enable = true;
|
||||
enableNushellIntegration = true;
|
||||
};
|
||||
direnv.enableNushellIntegration = true;
|
||||
};
|
||||
services = {
|
||||
gpg-agent.enableNushellIntegration = true;
|
||||
pueue = {
|
||||
enable = true;
|
||||
settings = {
|
||||
daemon = {
|
||||
default_parallel_tasks = 5;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue