This commit is contained in:
Lilith 2025-04-02 02:18:16 +02:00
parent 592e4f68a9
commit 9c6d103869
Signed by: lilith
GPG key ID: 8712A0F317C37175
7 changed files with 72 additions and 39 deletions

View file

@ -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
];
}

View file

@ -1,6 +1,9 @@
{...}: {
{ ... }:
{
programs.direnv = {
enable = true;
nix-direnv.enable = true;
enableZshIntegration = true;
enableNushellIntegration = true;
};
}

View file

@ -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
View file

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
programs.nushell = {
enable = true;
plugins = with pkgs.nushellPlugins; [
formats
query
gstat
];
};
}