Skip to content

Commit

Permalink
Fix firefow warning
Browse files Browse the repository at this point in the history
  • Loading branch information
adfaure committed Jul 26, 2024
1 parent b97187d commit 765bab2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
7 changes: 4 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,9 @@
};

formatter.${system} = nixpkgs.legacyPackages.${system}.alejandra;
checks.${system} = with import nixpkgs {inherit system;}; {
cgvg = self.packages.${system}.cgvg;
checks.${system} = builtins.listToAttrs (map (name: {
name = name;
value = self.packages.${system}.${name};
}) (builtins.attrNames self.packages.${system}));
};
};
}
3 changes: 2 additions & 1 deletion nixos/profiles/common/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ with lib; {
nixpkgs.config = {
pulseaudio = true;
allowUnfree = true;
firefox.enableBrowserpass = true;
# firefox.enableBrowserpass = true;
firefox.nativeMessagingHosts = true;
packageOverrides = pkgs: {
sudo = pkgs.sudo.override {withInsults = true;};
};
Expand Down

0 comments on commit 765bab2

Please sign in to comment.