Compare commits
No commits in common. "57252af57b3afb9acf2e03acb647262a9ffbe415" and "4468f7045b9a748976b6f0d897c4ec7b955bec0a" have entirely different histories.
57252af57b
...
4468f7045b
|
@ -46,9 +46,6 @@
|
||||||
./voice.nix
|
./voice.nix
|
||||||
./nvim
|
./nvim
|
||||||
./zellij
|
./zellij
|
||||||
./tiny-irc.nix
|
|
||||||
./pass.nix
|
|
||||||
./gpg.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
@ -65,5 +62,5 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.syncthing.enable = true;
|
services.ssh-agent.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
config,
|
|
||||||
pkgs,
|
|
||||||
lib,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
programs.gpg.enable = true;
|
|
||||||
|
|
||||||
services.gpg-agent={
|
|
||||||
enable=true;
|
|
||||||
enableSshSupport = true;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -22,7 +22,6 @@
|
||||||
enableNushellIntegration = true;
|
enableNushellIntegration = true;
|
||||||
};
|
};
|
||||||
programs.direnv.enableNushellIntegration = true;
|
programs.direnv.enableNushellIntegration = true;
|
||||||
services.gpg-agent.enableNushellIntegration = true;
|
|
||||||
|
|
||||||
services.pueue = {
|
services.pueue = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -21,8 +21,7 @@ $env.EDITOR = nvim
|
||||||
$env.VISUAL = nvim
|
$env.VISUAL = nvim
|
||||||
$env.PIPENV_VENV_IN_PROJECT = 1
|
$env.PIPENV_VENV_IN_PROJECT = 1
|
||||||
$env.POETRY_VIRTUALENVS_IN_PROJECT = 1
|
$env.POETRY_VIRTUALENVS_IN_PROJECT = 1
|
||||||
$env.XDG_DATA_HOME = ( $env.HOME | path join ".local" "share" )
|
$env.SSH_AUTH_SOCK = $"($env.XDG_RUNTIME_DIR)/ssh-agent"
|
||||||
$env.PASSWORD_STORE_DIR = ($env.XDG_DATA_HOME | path join "password-store")
|
|
||||||
|
|
||||||
$env.NU_LIB_DIRS = [
|
$env.NU_LIB_DIRS = [
|
||||||
...
|
...
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
direction = "horizontal";
|
direction = "horizontal";
|
||||||
insertMappings = false;
|
insertMappings = false;
|
||||||
openMapping = ''<c-\>'';
|
|
||||||
terminalMappings = false;
|
|
||||||
};
|
};
|
||||||
keymaps = [
|
keymaps = [
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
{
|
|
||||||
config,
|
|
||||||
pkgs,
|
|
||||||
lib,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
programs.password-store = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
ripasso-cursive
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,38 +0,0 @@
|
||||||
{
|
|
||||||
config,
|
|
||||||
pkgs,
|
|
||||||
lib,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
programs.tiny = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
servers = [
|
|
||||||
{
|
|
||||||
addr = "irc.libera.chat";
|
|
||||||
port = 6697;
|
|
||||||
tls = true;
|
|
||||||
realname = "Gabe Venberg";
|
|
||||||
nicks = ["toric"];
|
|
||||||
join = [
|
|
||||||
"#libera"
|
|
||||||
"#linux"
|
|
||||||
"#lobsters"
|
|
||||||
"#nixos"
|
|
||||||
];
|
|
||||||
sasl = {
|
|
||||||
username="toric";
|
|
||||||
password={
|
|
||||||
command= "pass show libera";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
];
|
|
||||||
defaults = {
|
|
||||||
nicks = ["toric"];
|
|
||||||
realname = "Gabe Venberg";
|
|
||||||
tls = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -10,7 +10,6 @@
|
||||||
programs.carapace.enableZshIntegration = true;
|
programs.carapace.enableZshIntegration = true;
|
||||||
programs.direnv.enableZshIntegration = true;
|
programs.direnv.enableZshIntegration = true;
|
||||||
programs.kitty.shellIntegration.enableZshIntegration = true;
|
programs.kitty.shellIntegration.enableZshIntegration = true;
|
||||||
services.gpg-agent.enableZshIntegration = true;
|
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableCompletion = true;
|
enableCompletion = true;
|
||||||
|
|
Loading…
Reference in a new issue