Compare commits
5 commits
e0fb4b8903
...
f2ce3e3fca
Author | SHA1 | Date | |
---|---|---|---|
f2ce3e3fca | |||
6a7665c2cb | |||
cfd8f74707 | |||
69b732c1c5 | |||
47329510a8 |
7 changed files with 121 additions and 3 deletions
|
@ -38,6 +38,8 @@
|
||||||
|
|
||||||
impermanence.url = "github:nix-community/impermanence";
|
impermanence.url = "github:nix-community/impermanence";
|
||||||
|
|
||||||
|
schizofox.url = "github:schizofox/schizofox";
|
||||||
|
|
||||||
# secure booting
|
# secure booting
|
||||||
lanzaboote = {
|
lanzaboote = {
|
||||||
url = "github:nix-community/lanzaboote";
|
url = "github:nix-community/lanzaboote";
|
||||||
|
|
|
@ -70,6 +70,7 @@
|
||||||
btop.enable = true;
|
btop.enable = true;
|
||||||
nh.enable = true;
|
nh.enable = true;
|
||||||
thunar.enable = true;
|
thunar.enable = true;
|
||||||
|
schizofox.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
system.stateVersion = "23.11";
|
system.stateVersion = "23.11";
|
||||||
|
|
|
@ -23,8 +23,6 @@
|
||||||
emacs30-pgtk
|
emacs30-pgtk
|
||||||
evince
|
evince
|
||||||
eza
|
eza
|
||||||
firefox
|
|
||||||
fftw
|
|
||||||
gcc
|
gcc
|
||||||
gh
|
gh
|
||||||
grc
|
grc
|
||||||
|
|
117
modules/programs/gui/schizofox/module.nix
Normal file
117
modules/programs/gui/schizofox/module.nix
Normal file
|
@ -0,0 +1,117 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
inputs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
inherit (lib.modules) mkIf;
|
||||||
|
inherit (lib.options) mkEnableOption;
|
||||||
|
inherit (builtins) listToAttrs;
|
||||||
|
|
||||||
|
cfg = config.modules.programs.schizofox;
|
||||||
|
in {
|
||||||
|
options.modules.programs.schizofox.enable = mkEnableOption "Schizofox browser";
|
||||||
|
imports = [
|
||||||
|
inputs.schizofox.nixosModules.default
|
||||||
|
];
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
programs.schizofox = {
|
||||||
|
enable = true;
|
||||||
|
theme = {
|
||||||
|
font = "Lexend";
|
||||||
|
colors = {
|
||||||
|
background-darker = "181825";
|
||||||
|
background = "1e1e2e";
|
||||||
|
foreground = "cdd6f4";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
security = {
|
||||||
|
sanitizeOnShutdown.enable = true;
|
||||||
|
sandbox.enable = true;
|
||||||
|
noSessionRestore = true;
|
||||||
|
userAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:106.0) Gecko/20100101 Firefox/106.0";
|
||||||
|
};
|
||||||
|
|
||||||
|
misc = {
|
||||||
|
drm.enable = true;
|
||||||
|
disableWebgl = false;
|
||||||
|
bookmarks = [
|
||||||
|
{
|
||||||
|
Title = "Noogle";
|
||||||
|
URL = "https://noogle.dev";
|
||||||
|
Placement = "toolbar";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
Title = "Nixpkgs Manual";
|
||||||
|
URL = "https://nixos.org/manual/nixpkgs/stable";
|
||||||
|
Placement = "toolbar";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
extensions = {
|
||||||
|
simplefox.enable = true;
|
||||||
|
darkreader.enable = true;
|
||||||
|
|
||||||
|
enableDefaultExtensions = true;
|
||||||
|
enableExtraExtensions = true;
|
||||||
|
extraExtensions = let
|
||||||
|
extensions = [
|
||||||
|
{
|
||||||
|
id = "{c2c003ee-bd69-42a2-b0e9-6f34222cb046}";
|
||||||
|
name = "auto-tab-discard";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
id = "{a4c4eda4-fb84-4a84-b4a1-f7c1cbf2a1ad}";
|
||||||
|
name = "refined-github-";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
id = "sponsorBlocker@ajay.app";
|
||||||
|
name = "sponsorblock";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
id = "{446900e4-71c2-419f-a6a7-df9c091e268b}";
|
||||||
|
name = "bitwarden-password-manager";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
id = "{74145f27-f039-47ce-a470-a662b129930a}";
|
||||||
|
name = "clearurls";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
id = "{b86e4813-687a-43e6-ab65-0bde4ab75758}";
|
||||||
|
name = "localcdn-fork-of-decentraleyes";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
id = "smart-referer@meh.paranoid.pk";
|
||||||
|
name = "smart-referer";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
id = "skipredirect@sblask";
|
||||||
|
name = "skip-redirect";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
id = "7esoorv3@alefvanoon.anonaddy.me";
|
||||||
|
name = "libredirect";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
id = "DontFuckWithPaste@raim.ist";
|
||||||
|
name = "dont-fuck-with-paste";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
mappedExtensions =
|
||||||
|
map (extension: {
|
||||||
|
name = extension.id;
|
||||||
|
value = {
|
||||||
|
install_url = "https://addons.mozilla.org/firefox/downloads/latest/${extension.name}/latest.xpi";
|
||||||
|
};
|
||||||
|
})
|
||||||
|
extensions;
|
||||||
|
in
|
||||||
|
listToAttrs mappedExtensions;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Binary file not shown.
Before Width: | Height: | Size: 391 KiB |
BIN
modules/style/wholefoods.png
Normal file
BIN
modules/style/wholefoods.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.2 MiB |
|
@ -32,7 +32,7 @@ in {
|
||||||
"$mainMod, F, fullscreen, 0"
|
"$mainMod, F, fullscreen, 0"
|
||||||
"$mainMod, D, exec, ${pkgs.procps}/bin/pkill fuzzel || ${getExe pkgs.fuzzel}"
|
"$mainMod, D, exec, ${pkgs.procps}/bin/pkill fuzzel || ${getExe pkgs.fuzzel}"
|
||||||
"$mainMod, SPACE, togglefloating, active"
|
"$mainMod, SPACE, togglefloating, active"
|
||||||
"$mainMod ALT, L, exec, ${getExe pkgs.swaylock}"
|
"$mainMod ALT, L, exec, ${getExe pkgs.hyprlock}"
|
||||||
|
|
||||||
# Screenshotting
|
# Screenshotting
|
||||||
"$mainMod, S, exec, ${pkgs.grimblast}/bin/grimblast copy area" # only copy
|
"$mainMod, S, exec, ${pkgs.grimblast}/bin/grimblast copy area" # only copy
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue