refined IRC setup.

This commit is contained in:
Gabe Venberg 2024-03-31 16:23:56 -05:00
parent 57252af57b
commit 015da14be2
6 changed files with 33 additions and 8 deletions

View file

@ -6,8 +6,8 @@
}: {
programs.gpg.enable = true;
services.gpg-agent={
enable=true;
services.gpg-agent = {
enable = true;
enableSshSupport = true;
};
}

View file

@ -17,12 +17,9 @@ path add ($env.HOME | path join ".nix-profile" "bin")
path add ('/opt')
$env.PATH = ($env.PATH | uniq)
$env.EDITOR = nvim
$env.VISUAL = nvim
$env.PIPENV_VENV_IN_PROJECT = 1
$env.POETRY_VIRTUALENVS_IN_PROJECT = 1
$env.XDG_DATA_HOME = ( $env.HOME | path join ".local" "share" )
$env.PASSWORD_STORE_DIR = ($env.XDG_DATA_HOME | path join "password-store")
$env.NU_LIB_DIRS = [
...

View file

@ -21,6 +21,12 @@
EDITOR = "nvim";
VISUAL = "nvim";
};
programs.nushell.extraEnv = ''
$env.EDITOR = nvim
$env.VISUAL = nvim
'';
imports = [
./keybinds.nix
./options.nix

View file

@ -11,4 +11,8 @@
home.packages = with pkgs; [
ripasso-cursive
];
programs.nushell.extraEnv = ''
$env.PASSWORD_STORE_DIR = ($env.XDG_DATA_HOME | path join "password-store")
'';
}

View file

@ -0,0 +1,11 @@
{
config,
pkgs,
lib,
...
}: {
services.ssh-agent.enable = true;
programs.nushell.extraEnv = ''
$env.SSH_AUTH_SOCK = $"($env.XDG_RUNTIME_DIR)/ssh-agent"
'';
}

View file

@ -19,11 +19,18 @@
"#linux"
"#lobsters"
"#nixos"
"#rust"
"#git"
"#programming"
"#hardware"
"#neovim"
"#kernel"
"#gamingonlinux"
];
sasl = {
username="toric";
password={
command= "pass show libera";
username = "toric";
password = {
command = "pass show libera";
};
};
}