nixbot

builds

failed treefmt-check checks.aarch64-darwin.formatting · build #423 · raw

1treefmt v2.5.0traversed 1215 files2emitted 527 files for processing3formatted 527 files (4 changed) in 1.845s4 M home-manager/common.nix5 M home-manager/modules/librewolf.nix6diff --git a/home-manager/common.nix b/home-manager/common.nix7index d7e31d7..9672622 1006448--- a/home-manager/common.nix9+++ b/home-manager/common.nix10@@ -110,6 +110,9 @@11 home.stateVersion = "23.11";12 home.username = lib.mkDefault "joerg";13 home.homeDirectory =14- if pkgs.stdenv.hostPlatform.isDarwin then "/Users/${config.home.username}" else "/home/${config.home.username}";15+ if pkgs.stdenv.hostPlatform.isDarwin then16+ "/Users/${config.home.username}"17+ else18+ "/home/${config.home.username}";19 programs.home-manager.enable = true;20 }21diff --git a/home-manager/modules/librewolf.nix b/home-manager/modules/librewolf.nix22index 6cdf064..3eeb6a7 10064423--- a/home-manager/modules/librewolf.nix24+++ b/home-manager/modules/librewolf.nix25@@ -36,15 +36,17 @@ in26 '';27 28 # Native messaging host so the pywalfox addon can read noctalia colors.29- home.file.".librewolf/native-messaging-hosts/pywalfox.json" = lib.mkIf pkgs.stdenv.hostPlatform.isLinux {30- text = builtins.toJSON {31- name = "pywalfox";32- description = "Automatically theme your browser using the colors generated by Pywal";33- path = "${pkgs.pywalfox-native}/bin/pywalfox";34- type = "stdio";35- allowed_extensions = [ "pywalfox@frewacom.org" ];36- };37- };38+ home.file.".librewolf/native-messaging-hosts/pywalfox.json" =39+ lib.mkIf pkgs.stdenv.hostPlatform.isLinux40+ {41+ text = builtins.toJSON {42+ name = "pywalfox";43+ description = "Automatically theme your browser using the colors generated by Pywal";44+ path = "${pkgs.pywalfox-native}/bin/pywalfox";45+ type = "stdio";46+ allowed_extensions = [ "pywalfox@frewacom.org" ];47+ };48+ };49 50 # Register native messaging host so the browser extension can talk to browser-cli51 home.activation.installBrowserCliHost = lib.hm.dag.entryAfter [ "writeBoundary" ] ''