Updated emacs config for new dot-emacs repo
This commit is contained in:
parent
72d16c4e37
commit
8746d38eef
@ -56,11 +56,29 @@
|
|||||||
hardware.bluetooth.enable = true;
|
hardware.bluetooth.enable = true;
|
||||||
services.blueman.enable = true;
|
services.blueman.enable = true;
|
||||||
|
|
||||||
|
# System Packages
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
pinentry-gtk2
|
||||||
|
protonmail-bridge
|
||||||
|
pass
|
||||||
|
];
|
||||||
|
|
||||||
# Setup Pinentry
|
# Setup Pinentry
|
||||||
environment.systemPackages = with pkgs; [ pinentry-gtk2 ];
|
|
||||||
programs.gnupg.agent = {
|
programs.gnupg.agent = {
|
||||||
enable = true;
|
enable = true;
|
||||||
pinentryPackage = pkgs.pinentry-gtk2;
|
pinentryPackage = pkgs.pinentry-gtk2;
|
||||||
enableSSHSupport = true;
|
enableSSHSupport = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Setup protonmail bridge
|
||||||
|
systemd.user.services.protonmail-bridge = {
|
||||||
|
description = "Protonmail Bridge";
|
||||||
|
after = [ "network.target" ];
|
||||||
|
wantedBy = [ "default.target" ];
|
||||||
|
path = [ pkgs.pass ];
|
||||||
|
serviceConfig = {
|
||||||
|
Restart = "always";
|
||||||
|
ExecStart = "${pkgs.protonmail-bridge}/bin/protonmail-bridge --noninteractive";
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -6,12 +6,12 @@
|
|||||||
libtool
|
libtool
|
||||||
|
|
||||||
# Additional packages for functionality
|
# Additional packages for functionality
|
||||||
isync
|
|
||||||
ispell
|
|
||||||
texliveFull
|
|
||||||
mu
|
mu
|
||||||
zip
|
zip
|
||||||
unzip
|
unzip
|
||||||
|
isync
|
||||||
|
ispell
|
||||||
|
texliveFull
|
||||||
|
|
||||||
# Fonts
|
# Fonts
|
||||||
maple-mono.truetype
|
maple-mono.truetype
|
||||||
@ -38,15 +38,4 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
home.file = {
|
|
||||||
".emacs".source = ../../dotfiles/.emacs;
|
|
||||||
".emacs.d/config.org".source = ../../dotfiles/.emacs.d/config.org;
|
|
||||||
".emacs.d/terminal.org".source = ../../dotfiles/.emacs.d/terminal.org;
|
|
||||||
".emacs.d/functions.org".source = ../../dotfiles/.emacs.d/functions.org;
|
|
||||||
".emacs.d/email.org".source = ../../dotfiles/.emacs.d/email.org;
|
|
||||||
".emacs.d/org.org".source = ../../dotfiles/.emacs.d/org.org;
|
|
||||||
".emacs.d/lsp.org".source = ../../dotfiles/.emacs.d/lsp.org;
|
|
||||||
".mbsyncrc".source = ../../dotfiles/.mbsyncrc;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user