fix: declare KeePassXC browser integration
This commit is contained in:
@@ -17,6 +17,7 @@ in
|
|||||||
inherit config;
|
inherit config;
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
})
|
})
|
||||||
|
(import ../../modules/keepassxc.nix { inherit pkgs; })
|
||||||
];
|
];
|
||||||
|
|
||||||
home.stateVersion = "25.05";
|
home.stateVersion = "25.05";
|
||||||
@@ -54,7 +55,6 @@ in
|
|||||||
enableBashIntegration = true;
|
enableBashIntegration = true;
|
||||||
};
|
};
|
||||||
home-manager.enable = true;
|
home-manager.enable = true;
|
||||||
keepassxc = import ../../modules/keepassxc.nix;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = import ./packages.nix {
|
home.packages = import ./packages.nix {
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ in
|
|||||||
../../modules/dconf.nix
|
../../modules/dconf.nix
|
||||||
../../modules/git.nix
|
../../modules/git.nix
|
||||||
../../modules/k9s.nix
|
../../modules/k9s.nix
|
||||||
|
(import ../../modules/keepassxc.nix { inherit pkgs; })
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
@@ -34,7 +35,6 @@ in
|
|||||||
inherit config;
|
inherit config;
|
||||||
};
|
};
|
||||||
gh.enable = true;
|
gh.enable = true;
|
||||||
keepassxc = import ../../modules/keepassxc.nix;
|
|
||||||
kubecolor.enable = true;
|
kubecolor.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,11 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
programs.keepassxc = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# TODO: https://mynixos.com/home-manager/option/programs.keepassxc.settings
|
settings = {
|
||||||
|
Browser.Enabled = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
# programs.firefox.nativeMessagingHosts = [ pkgs.keepassxc ]; # FIXME: Resolve 'Access error for config file /home/h/.config/keepassxc/keepassxc.ini' error
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user