This commit is contained in:
Steph 2025-01-19 23:26:11 +01:00
parent 52de4024bd
commit a943e0d34e
2 changed files with 13 additions and 7 deletions

View File

@ -56,6 +56,5 @@
mac-app-util.homeManagerModules.default mac-app-util.homeManagerModules.default
]; ];
}; };
}; };
} }

View File

@ -10,8 +10,7 @@
inputs.firefox-macos-theme; inputs.firefox-macos-theme;
}) })
{ (let configedFirefox = lib.mkMerge [
programs.librewolf = lib.mkMerge [
(lib.mkIf (os == "darwin") { (lib.mkIf (os == "darwin") {
package = null; package = null;
}) })
@ -93,5 +92,13 @@
}; };
} }
]; ];
} in lib.mkMerge [
(lib.mkIf (os == "linux") {
programs.librewolf = configedFirefox;
})
(lib.mkIf (os == "darwin") {
programs.firefox = configedFirefox;
})
])
] ]