refactor: small changes and update ff addons
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-01-16 23:51:28 -05:00
parent 8a8ea40101
commit cf60a45c4c
5 changed files with 17 additions and 8 deletions

View file

@ -3,6 +3,8 @@
pkgs, pkgs,
... ...
}: { }: {
# FIXME: move this to hardware-config?
# Enable OpenGL # Enable OpenGL
hardware.opengl = { hardware.opengl = {
enable = true; enable = true;

View file

@ -8,7 +8,7 @@
} @ inputs: } @ inputs:
with lib; with lib;
with builtins; let with builtins; let
inherit (config.vars) mainUser; inherit (config.vars) mainUser hostName;
configPath = "/var/lib/arion"; configPath = "/var/lib/arion";
in { in {
imports = [arion.nixosModules.arion]; imports = [arion.nixosModules.arion];
@ -58,7 +58,7 @@ in {
backend = "docker"; backend = "docker";
projects = let projects = let
basePath = "${self}/devices/${config.vars.hostName}/modules/arion"; basePath = "${self}/devices/${hostName}/modules/arion";
composeFiles = composeFiles =
filter (n: hasSuffix "compose.nix" (toString n)) filter (n: hasSuffix "compose.nix" (toString n))

View file

@ -6,15 +6,22 @@
}: { }: {
"600-sound-volume" = buildFirefoxXpiAddon { "600-sound-volume" = buildFirefoxXpiAddon {
pname = "600-sound-volume"; pname = "600-sound-volume";
version = "1.5.3"; version = "1.5.5";
addonId = "{c4b582ec-4343-438c-bda2-2f691c16c262}"; addonId = "{c4b582ec-4343-438c-bda2-2f691c16c262}";
url = "https://addons.mozilla.org/firefox/downloads/file/4133303/600_sound_volume-1.5.3.xpi"; url = "https://addons.mozilla.org/firefox/downloads/file/4219765/600_sound_volume-1.5.5.xpi";
sha256 = "7045a812608338f95181459ae3e518bb51c8dc9a724a4083afb687d14075c304"; sha256 = "efc686d54727f29b5c796f4037f19a5d5f31f77354c9c5f8f47d8768ba24fe98";
meta = with lib; { meta = with lib; {
homepage = "http://resourcefulman.net/"; homepage = "http://resourcefulman.net/";
description = "Up to 600% volume boost"; description = "Up to 600% volume boost";
license = licenses.mpl20; license = licenses.mpl20;
mozPermissions = ["<all_urls>" "tabs" "activeTab" "storage"]; mozPermissions = [
"<all_urls>"
"tabs"
"activeTab"
"storage"
"webRequest"
"webRequestBlocking"
];
platforms = platforms.all; platforms = platforms.all;
}; };
}; };