some things (tiny commit ik)
This commit is contained in:
parent
6b76450816
commit
2c282d8bf7
38 changed files with 771 additions and 102 deletions
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -95,7 +95,7 @@
|
|||
"Google".metaData.alias = "@go";
|
||||
"DuckDuckGo".metaData.alias = "@ddg";
|
||||
"Wikipedia".metaData.alias = "@wiki";
|
||||
"Bing".metaData.hidden = true;
|
||||
"Bing".metaData.alias = "@bi";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
|
||||
/* Hide tab bar */
|
||||
#TabsToolbar {
|
||||
/* display: none; */
|
||||
visibility: collapse;
|
||||
}
|
||||
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
programs.obs-studio = {
|
||||
enable = true;
|
||||
plugins = with pkgs.obs-studio-plugins; [
|
||||
obs-vaapi
|
||||
wlrobs
|
||||
obs-vkcapture
|
||||
];
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
{config, ...}: {
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
programs.git = {
|
||||
enable = true;
|
||||
delta.enable = true;
|
||||
|
|
3
home/terminal/programs/zoxide.nix
Normal file
3
home/terminal/programs/zoxide.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
programs.zoxide.enable = true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue