Skip to content

Commit

Permalink
fix: config dir not renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
nilp0inter authored Feb 9, 2025
1 parent 1d13b47 commit 098606c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nix/autofirma/hm-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ in {
config = mkIf cfg.enable {
home.activation.createAutofirmaCert = lib.hm.dag.entryAfter ["writeBoundary"] ''
verboseEcho Running create-autofirma-cert
run ${lib.getExe create-autofirma-cert} $VERBOSE_ARG ${config.home.homeDirectory}/.afirma/Autofirma
run ${lib.getExe create-autofirma-cert} $VERBOSE_ARG ${config.home.homeDirectory}/.afirma/AutoFirma
'';
home.packages = [cfg.finalPackage];
programs.firefox.policies.Certificates = mkIf anyFirefoxIntegrationProfileIsEnabled {
ImportEnterpriseRoots = true;
Install = [ "${config.home.homeDirectory}/.afirma/Autofirma/Autofirma_ROOT.cer" ];
Install = [ "${config.home.homeDirectory}/.afirma/AutoFirma/Autofirma_ROOT.cer" ];
};
programs.firefox.profiles = flip mapAttrs cfg.firefoxIntegration.profiles (name: {enable, ...}: {
settings = mkIf enable {
Expand Down

0 comments on commit 098606c

Please sign in to comment.