WIP: rewrite config #618

Draft
darkkirb wants to merge 345 commits from rewrite into main
Showing only changes of commit eead2d9c29 - Show all commits

View file

@ -1,5 +1,13 @@
{ pkgs, ... }: {
{ lib, ... }: {
home.packages = with pkgs; [
keepassxc
];
xdg.configFile."keepassxc.ini" = lib.generators.toINI {} {
General.ConfigVersion = 2;
Browser = {
CustomProxyLocation = "";
Enabled = true;
UpdateBinaryPath = false;
};
};
}