Merge branch 'nixos' of github.com:MoritzBoehme/dotfiles into nixos
commit
ee750878cd
|
@ -1,7 +1,7 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [ ./rofi ./kitty.nix ./zathura.nix ];
|
imports = [ ./rofi ./kitty.nix ./zathura.nix ./email.nix ];
|
||||||
home-manager.users.moritz.home.packages = with pkgs; [
|
home-manager.users.moritz.home.packages = with pkgs; [
|
||||||
neofetch
|
neofetch
|
||||||
unstable.keepassxc
|
unstable.keepassxc
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home-manager.users.moritz = { home.packages = with pkgs; [ thunderbird ]; };
|
||||||
|
services.gnome.gnome-keyring.enable = true;
|
||||||
|
environment.systemPackages = with pkgs; [ protonmail-bridge ];
|
||||||
|
systemd.user.services.protonmail-bridge = {
|
||||||
|
description = "Protonmail Bridge";
|
||||||
|
enable = true;
|
||||||
|
script =
|
||||||
|
"${pkgs.protonmail-bridge}/bin/protonmail-bridge --log-level debug";
|
||||||
|
path = [
|
||||||
|
pkgs.gnome3.gnome-keyring
|
||||||
|
]; # HACK: https://github.com/ProtonMail/proton-bridge/issues/176
|
||||||
|
wantedBy = [ "graphical-session.target" ];
|
||||||
|
partOf = [ "graphical-session.target" ];
|
||||||
|
};
|
||||||
|
networking.firewall.allowedTCPPorts = [ 33728 1025 1143 ];
|
||||||
|
}
|
Loading…
Reference in New Issue