some things (tiny commit ik)

This commit is contained in:
xunuwu 2024-10-21 21:56:47 +02:00
parent 6b76450816
commit 2c282d8bf7
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
38 changed files with 771 additions and 102 deletions

View file

@ -13,6 +13,7 @@
# ../../terminal
../../terminal/programs/zellij.nix
../../terminal/programs/zoxide.nix
# ../../terminal/programs/irssi.nix
../../terminal/programs/lazygit.nix
../../terminal/programs/beets.nix
@ -73,7 +74,6 @@
name = "dayfox";
package = "EdenEast/nightfox.nvim";
};
wakatime = enabled;
};
desktop = {
xdg = enabled;
@ -97,6 +97,7 @@
};
gaming = {
krunker = enabled;
umu = enabled;
roblox.sobercookie = enabled;
};
school.geogebra = enabled;

View file

@ -39,14 +39,14 @@
istilldontcareaboutcookies
sidebery
(lib.mkIf (builtins.elem pkgs.keepassxc config.home.packages) keepassxc-browser)
(buildFirefoxXpiAddon rec {
pname = "roseal";
version = "1.3.44";
addonId = "{f4f4223a-ff30-4961-b9c0-6a71b7a32aaf}";
url = "https://addons.mozilla.org/firefox/downloads/file/4323142/roseal-${version}.xpi";
sha256 = "sha256-Qvd/EUMsSqYCvwUuxjM/ejnn7/TRuhyD82/Azu0dAfE=";
meta = {};
})
#(buildFirefoxXpiAddon rec {
# pname = "roseal";
# version = "1.3.44";
# addonId = "{f4f4223a-ff30-4961-b9c0-6a71b7a32aaf}";
# url = "https://addons.mozilla.org/firefox/downloads/file/4323142/roseal-${version}.xpi";
# sha256 = "sha256-Qvd/EUMsSqYCvwUuxjM/ejnn7/TRuhyD82/Azu0dAfE=";
# meta = {};
#})
];
userChrome = builtins.readFile ./userChrome.css;
# extraConfig = let

View file

@ -95,7 +95,7 @@
"Google".metaData.alias = "@go";
"DuckDuckGo".metaData.alias = "@ddg";
"Wikipedia".metaData.alias = "@wiki";
"Bing".metaData.hidden = true;
"Bing".metaData.alias = "@bi";
};
};
}

View file

@ -5,7 +5,6 @@
/* Hide tab bar */
#TabsToolbar {
/* display: none; */
visibility: collapse;
}

View file

@ -102,6 +102,8 @@
"${mod}+Ctrl+Shift+${dir.up}" = "move output up";
"${mod}+Ctrl+Shift+${dir.down}" = "move output down";
"${mod}+t" = "sticky toggle";
"${mod}+Shift+Backspace" = "exec systemctl suspend";
"${mod}+Shift+s" = "exec ${lib.getExe pkgs.sway-contrib.grimshot} copy anything";
"${mod}+Ctrl+Shift+s" = "exec ${lib.getExe pkgs.sway-contrib.grimshot} savecopy anything";

View file

@ -5,5 +5,5 @@
withOpenASAR = true;
})
];
services.arrpc.enable = true; # RPC with vesktop
# services.arrpc.enable = true; # RPC with vesktop (disabled since it uses way more cpu than is reasonable for such a program)
}

View file

@ -2,6 +2,7 @@
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-vaapi
wlrobs
obs-vkcapture
];

View file

@ -1,4 +1,8 @@
{config, ...}: {
{
config,
pkgs,
...
}: {
programs.git = {
enable = true;
delta.enable = true;

View file

@ -0,0 +1,3 @@
{
programs.zoxide.enable = true;
}