nushell
This commit is contained in:
parent
592e4f68a9
commit
9c6d103869
7 changed files with 72 additions and 39 deletions
|
|
@ -17,7 +17,7 @@
|
|||
./clipman.nix
|
||||
./common.nix
|
||||
./direnv.nix
|
||||
./firefox.nix
|
||||
# ./firefox.nix
|
||||
./fzf.nix
|
||||
./git.nix
|
||||
./gpg.nix
|
||||
|
|
@ -28,6 +28,8 @@
|
|||
./ssh.nix
|
||||
./stylix.nix
|
||||
./thunderbird.nix
|
||||
|
||||
./zsh
|
||||
./nushell.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,9 @@
|
|||
{...}: {
|
||||
{ ... }:
|
||||
{
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
nix-direnv.enable = true;
|
||||
enableZshIntegration = true;
|
||||
enableNushellIntegration = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,13 +7,13 @@
|
|||
{
|
||||
imports = [ zen-browser.homeManagerModules.zen-browser ];
|
||||
|
||||
home.file.".mozilla/native-messaging-hosts".source =
|
||||
lib.mkForce /home/lilith/.mozilla/native-messaging-hosts;
|
||||
# home.file.".mozilla/native-messaging-hosts".source =
|
||||
# lib.mkForce /home/lilith/.mozilla/native-messaging-hosts;
|
||||
|
||||
programs.zen-browser = {
|
||||
enable = true;
|
||||
|
||||
nativeMessagingHosts = lib.mkForce (
|
||||
nativeMessagingHosts = (
|
||||
with pkgs;
|
||||
[
|
||||
tridactyl-native
|
||||
|
|
|
|||
11
home/lilith/nushell.nix
Normal file
11
home/lilith/nushell.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
programs.nushell = {
|
||||
enable = true;
|
||||
plugins = with pkgs.nushellPlugins; [
|
||||
formats
|
||||
query
|
||||
gstat
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue