feat: kdewallet stuff

This commit is contained in:
s-prechtl 2025-06-24 13:19:52 +02:00
parent 7ad7a5a1f2
commit f8eb02b725
2 changed files with 11 additions and 3 deletions

View file

@ -90,6 +90,7 @@
};
home-manager = {
backupFileExtension = "backup";
extraSpecialArgs = {inherit inputs;};
users = {
"sprechtl" = import ./home.nix;
@ -140,6 +141,7 @@
jdk
jdt-language-server
kdePackages.dolphin
kdePackages.kwalletmanager
libgcc
linux-manual
lolcat
@ -294,7 +296,13 @@
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
security.pam.services.hyprlock = {};
security.pam.services =
{
hyprlock = {};
"kdewallet" = {
kwallet.enable = true;
};
};
networking.firewall.checkReversePath = false;
networking.wg-quick.interfaces = {
home = {

View file

@ -16,7 +16,7 @@
autoUpdateApps.enable = true;
package = pkgs.nextcloud31;
settings = let
prot = "https"; # or https
prot = "https";
host = config.services.nextcloud.hostName;
dir = "/nextcloud";
proxies = [ "127.0.0.1" ];
@ -69,7 +69,7 @@
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-NginX-Proxy true;
proxy_set_header X-Forwarded-Proto https;
#rewrite ^/nextcloud(.*)$ $1 break;
rewrite ^/nextcloud(.*)$ $1 break;
proxy_pass http://127.0.0.1:8080/; # tailing / is important!
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;