From 4d2f244d4b4ae8c8afc84c44a1eacbbddc3a7e73 Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Sun, 4 Jan 2026 14:24:19 +0100 Subject: [PATCH 1/2] mynixos --- home-modules/firefox/userContent.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home-modules/firefox/userContent.nix b/home-modules/firefox/userContent.nix index 4fa10d9..27aa2f8 100644 --- a/home-modules/firefox/userContent.nix +++ b/home-modules/firefox/userContent.nix @@ -122,7 +122,7 @@ in /* css */ '' background-color: transparent !important; } header, footer { - background-color: rgba(0,0,0,1) !important; + background-color: rgba(0,0,0,0.5) !important; backdrop-filter: blur(100px); border-radius: ${builtins.toString rice.rounding}px; } From 59bde2cc3780911586c92111e14f7adb2013b2b3 Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Sun, 4 Jan 2026 14:24:49 +0100 Subject: [PATCH 2/2] email update --- home-modules/email.nix | 62 +++++++++++++++++++++++++++--------------- 1 file changed, 40 insertions(+), 22 deletions(-) diff --git a/home-modules/email.nix b/home-modules/email.nix index a5e2b71..e47897a 100644 --- a/home-modules/email.nix +++ b/home-modules/email.nix @@ -136,36 +136,22 @@ lib.mkIf (hyper.host != "NxACE") settings = OAuth2Settings; }; }; - - # hsmw = with secrets.email.hsmw; { - # address = "${un}@hs-mittweida.de"; - # userName = "${un}@hs-mittweida.de"; + # pnx-nix = { + # address = secrets.email.pnx.mail; # realName = "Lennart J. Kurzweg"; - # imap = { - # port = 993; - # host = "xc.hs-mittweida.de"; - # }; - # smtp = { - # port = 587; - # host = "xc.hs-mittweida.de"; - # tls.useStartTls = true; - # }; + # flavor = "outlook.office365.com"; # signature = { # text = '' - # MatNr: ${mnr} - # SemGr: ${semgr} - # About Me: https://nx2.site/about-me - # Contact: https://nx2.site/contact - # GPG: https://nx2.site/gpg + # Phönix Metallbau GmbH + # Tel: 036374 2270 # ''; # showSignature = "append"; # }; - # thunderbird = { + # thunderbird = mkIf config.thunderbird.enable { # enable = true; # profiles = [ "nx2" ]; - # settings = id: { - # "mail.server.server_${id}.fcc_folder" = "imap://${un}%40hs-mittweida.de@xc.hs-mittweida.de/Sent"; - # }; + # # The id given as argument is an automatically generated account identifier. + # # settings = OAuth2Settings; # }; # }; tuda = with secrets.email.tuda; { @@ -205,3 +191,35 @@ lib.mkIf (hyper.host != "NxACE") + +# hsmw = with secrets.email.hsmw; { +# address = "${un}@hs-mittweida.de"; +# userName = "${un}@hs-mittweida.de"; +# realName = "Lennart J. Kurzweg"; +# imap = { +# port = 993; +# host = "xc.hs-mittweida.de"; +# }; +# smtp = { +# port = 587; +# host = "xc.hs-mittweida.de"; +# tls.useStartTls = true; +# }; +# signature = { +# text = '' +# MatNr: ${mnr} +# SemGr: ${semgr} +# About Me: https://nx2.site/about-me +# Contact: https://nx2.site/contact +# GPG: https://nx2.site/gpg +# ''; +# showSignature = "append"; +# }; +# thunderbird = { +# enable = true; +# profiles = [ "nx2" ]; +# settings = id: { +# "mail.server.server_${id}.fcc_folder" = "imap://${un}%40hs-mittweida.de@xc.hs-mittweida.de/Sent"; +# }; +# }; +# };