- fix matrix clients

- fix zen
- uuuugh, stupid home-manager...
This commit is contained in:
Chris Kruining 2025-09-14 22:03:21 +02:00
parent d35165ebc0
commit 1a4746819b
Signed by: chris
SSH key fingerprint: SHA256:nG82MUfuVdRVyCKKWqhY+pCrbz9nbX6uzUns4RKa1Pg
6 changed files with 16 additions and 21 deletions

View file

@ -10,6 +10,10 @@ in
};
config = mkIf cfg.enable {
home.packages = with pkgs; [ fractal ];
home.packages = with pkgs; [ fractal element-desktop ];
programs.element-desktop = {
enable = true;
};
};
}

View file

@ -19,6 +19,8 @@ in
};
programs.zen-browser = {
enable = true;
policies = {
AutofillAddressEnabled = true;
AutofillCreditCardEnabled = false;

View file

@ -64,7 +64,7 @@ in
};
kwalletrc = {
Wallet.Enabled = false;
Wallet.Enabled = true;
};
plasmarc = {

View file

@ -1,6 +1,6 @@
{ ... }:
{
config = {
home-manager.backupFileExtension = "back";
home-manager.backupFileExtension = "homeManagerBackup";
};
}