wow
Some checks failed
CI / check (push) Has been cancelled
CI / ida (push) Has been cancelled
CI / cpt (push) Has been cancelled
CI / build-nixos (ena) (push) Has been cancelled
CI / build-nixos (hako) (push) Has been cancelled
CI / build-nixos (kazusa) (push) Has been cancelled
CI / build-nixos (mizuki) (push) Has been cancelled

This commit is contained in:
암냥 2026-07-03 00:45:07 +09:00
commit bbac123a8d
144 changed files with 7059 additions and 0 deletions

29
modules/home/firefox.nix Normal file
View file

@ -0,0 +1,29 @@
{ pkgs, config, ... }:
{
programs.firefox = {
enable = true;
configPath = ".mozilla/firefox";
package = pkgs.firefox-devedition;
policies = {
Preferences = {
"widget.use-xdg-desktop-portal.file-picker" = {
Value = 1;
Status = "default";
};
"middlemouse.paste" = {
Value = false;
Status = "default";
};
};
ExtensionSettings = {
"figma-windows-ua-spoofer@imnyang.local" = {
installation_mode = "force_installed";
install_url = "https://git.mizuki.guru/imnyang/thisiswindowsfigma/releases/download/v1.0.0/d168a70cb6a24fe4a478-1.0.0.xpi";
};
};
};
};
home.file.".waterfox/native-messaging-hosts".source =
config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/.mozilla/native-messaging-hosts";
}