Compare commits

...

3 commits

Author SHA1 Message Date
Leonardo Eugênio f755ab3172 phantom: add lemmy 2024-12-08 19:13:16 -03:00
Leonardo Eugênio 7506219a1e firefox: remove mastodon simplified federation 2024-12-08 18:55:43 -03:00
Leonardo Eugênio 6d5cb05722 tablet: reduce drawing area 2024-12-08 18:55:00 -03:00
4 changed files with 19 additions and 8 deletions

View file

@ -11,6 +11,7 @@
../../system/nix.nix ../../system/nix.nix
./hardware-config.nix ./hardware-config.nix
./mastodon.nix ./mastodon.nix
./lemmy.nix
./nextcloud.nix ./nextcloud.nix
./nginx.nix ./nginx.nix
./syncthing.nix ./syncthing.nix

15
hosts/phantom/lemmy.nix Normal file
View file

@ -0,0 +1,15 @@
{
services.lemmy = {
enable = true;
settings = {
hostname = "lemmy.lelgenio.com";
};
database.createLocally = true;
nginx.enable = true;
};
services.nginx.virtualHosts."lemmy.lelgenio.com" = {
enableACME = true;
forceSSL = true;
};
}

View file

@ -61,11 +61,6 @@ in
hash = "sha256-ApCc+MNmW9Wd/5seV6npePQVEaszT/rhD9EB7HGiUb8="; hash = "sha256-ApCc+MNmW9Wd/5seV6npePQVEaszT/rhD9EB7HGiUb8=";
}) })
(pkgs.fetchFirefoxAddon {
name = "mastodon_simplified_federation";
url = "https://addons.mozilla.org/firefox/downloads/file/4215691/mastodon_simplified_federation-2.2.xpi";
hash = "sha256-4iU25chpjsdsMTPaa0yQOTWc9V9q1qFz6YV0lYtNjLA=";
})
(pkgs.fetchFirefoxAddon { (pkgs.fetchFirefoxAddon {
name = "substitoot"; name = "substitoot";
url = "https://addons.mozilla.org/firefox/downloads/file/4236602/substitoot-0.7.2.0.xpi"; url = "https://addons.mozilla.org/firefox/downloads/file/4236602/substitoot-0.7.2.0.xpi";

View file

@ -10,8 +10,8 @@
"Filters": [], "Filters": [],
"AbsoluteModeSettings": { "AbsoluteModeSettings": {
"Display": { "Display": {
"Width": 1920.0, "Width": 960.0,
"Height": 1080.0, "Height": 540.0,
"X": 960.0, "X": 960.0,
"Y": 540.0, "Y": 540.0,
"Rotation": 0.0 "Rotation": 0.0
@ -111,4 +111,4 @@
"LockUsableAreaDisplay": true, "LockUsableAreaDisplay": true,
"LockUsableAreaTablet": true, "LockUsableAreaTablet": true,
"Tools": [] "Tools": []
} }