Codroipo (again)
This commit is contained in:
parent
b9980587cf
commit
e90d83f78f
11 changed files with 66 additions and 10 deletions
|
@ -1,11 +1,32 @@
|
|||
{pkgs, ...}: {
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
package = pkgs.wrapFirefox pkgs.firefox-unwrapped {
|
||||
extraPolicies = {
|
||||
ExtensionSettings = {};
|
||||
package =
|
||||
(pkgs.wrapFirefox pkgs.firefox-unwrapped {
|
||||
extraPolicies = {
|
||||
ExtensionSettings = {};
|
||||
};
|
||||
})
|
||||
.override {
|
||||
cfg = {
|
||||
enableTridactylNative = true;
|
||||
enableBrowserpass = true;
|
||||
enableFXCastBridge = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||
https-everywhere
|
||||
privacy-badger
|
||||
ublock-origin
|
||||
tridactyl
|
||||
octotree
|
||||
octolinker
|
||||
org-capture
|
||||
browserpass
|
||||
bypass-paywalls-clean
|
||||
ghosttext # or edit-with-emacs?
|
||||
# fx_cast # TODO make PR to rycee NUR repo
|
||||
];
|
||||
profiles.ccr = {
|
||||
settings = {
|
||||
"browser.startup.homepage" = "https://google.it";
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
modifier = modifier;
|
||||
menu = "${pkgs.fuzzel}/bin/fuzzel --background-color=253559cc --border-radius=5 --border-width=0";
|
||||
output = let
|
||||
bg = "${./wallpaper.png} fill";
|
||||
bg = "${./wallpaper.svg} fill";
|
||||
in {
|
||||
DP-1 = {
|
||||
pos = "0 0";
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 41 KiB |
2
hmModules/sway/wallpaper.svg
Normal file
2
hmModules/sway/wallpaper.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 303 KiB |
|
@ -1,4 +1,15 @@
|
|||
{
|
||||
xdg.enable = true;
|
||||
xdg.mimeApps.enable = true;
|
||||
xdg = {
|
||||
enable = true;
|
||||
mimeApps.enable = true;
|
||||
desktopEntries = {
|
||||
org-protocol = {
|
||||
name = "org-protocol";
|
||||
genericName = "Org protocol";
|
||||
exec = "emacsclient -- %u";
|
||||
terminal = false;
|
||||
mimeType = ["x-scheme-handler/org-protocol"];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue