about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--flake/packages/default.nix4
-rw-r--r--hm/soispha/conf/firefox/scripts/default.nix29
2 files changed, 33 insertions, 0 deletions
diff --git a/flake/packages/default.nix b/flake/packages/default.nix
index 2ca25804..1b14be6a 100644
--- a/flake/packages/default.nix
+++ b/flake/packages/default.nix
@@ -55,6 +55,7 @@
     )
     self.nixosConfigurations;
   output_neovim = lib.attrsets.mapAttrs' (name: value: lib.attrsets.nameValuePair "nvim_${name}" value) nvim;
+  firefox = (import ../../hm/soispha/conf/firefox/scripts) {inherit pkgs sysLib;};
 in
   {
     install-iso = nixos-generators.nixosGenerate {
@@ -65,7 +66,9 @@ in
       ];
       format = "install-iso";
     };
+
     update_shell_lib = shell_library.packages."${system}".update_shell_library;
+
     # gpg-iso = nixos-generators.nixosGenerate {
     #   system = "x86_64-linux";
     #   specialArgs = defaultSpecialArgs;
@@ -80,3 +83,4 @@ in
   }
   // output
   // output_neovim
+  // firefox
diff --git a/hm/soispha/conf/firefox/scripts/default.nix b/hm/soispha/conf/firefox/scripts/default.nix
new file mode 100644
index 00000000..a7270980
--- /dev/null
+++ b/hm/soispha/conf/firefox/scripts/default.nix
@@ -0,0 +1,29 @@
+{
+  pkgs,
+  sysLib,
+  ...
+}: let
+  unzip_mozlz4 = pkgs.stdenv.mkDerivation {
+    name = "unzip_mozlz4";
+    propagatedBuildInputs = [
+      (pkgs.python3.withPackages (pythonPackages:
+        with pythonPackages; [
+          lz4
+        ]))
+    ];
+    dontUnpack = true;
+    installPhase = "install -Dm755 ${./unzip_mozlz4.py} $out/bin/unzip_mozlz4";
+  };
+  extract_cookies = sysLib.writeShellScriptWithLibrary {
+    name = "extract_cookies";
+    src = ./extract_cookies.sh;
+    dependencies = with pkgs; [
+      bash
+      sqlite
+      mktemp
+      coreutils
+    ];
+  };
+in {
+  inherit unzip_mozlz4 extract_cookies;
+}