changes
This commit is contained in:
parent
567de5ca7d
commit
81cca7b7bd
12 changed files with 104 additions and 54 deletions
|
|
@ -288,6 +288,28 @@
|
|||
definedAliases = [ "@np" ];
|
||||
};
|
||||
|
||||
nix-options = {
|
||||
name = "Nix Options";
|
||||
urls = [
|
||||
{
|
||||
template = "https://search.nixos.org/options";
|
||||
params = [
|
||||
{
|
||||
name = "type";
|
||||
value = "packages";
|
||||
}
|
||||
{
|
||||
name = "query";
|
||||
value = "{searchTerms}";
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
|
||||
icon = nixIcon;
|
||||
definedAliases = [ "@no" ];
|
||||
};
|
||||
|
||||
nixos-wiki = {
|
||||
name = "NixOS Wiki";
|
||||
urls = [ { template = "https://wiki.nixos.org/w/index.php?search={searchTerms}"; } ];
|
||||
|
|
|
|||
|
|
@ -198,8 +198,8 @@
|
|||
ShowAllMessageButtons.enabled = false;
|
||||
ShowConnections.enabled = false;
|
||||
ShowHiddenChannels = {
|
||||
enabled = false;
|
||||
showMode = 0;
|
||||
enabled = true;
|
||||
showMode = 1;
|
||||
hideUnreads = true;
|
||||
defaultAllowedUsersAndRolesDropdownState = true;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -4,5 +4,10 @@
|
|||
...
|
||||
}:
|
||||
{
|
||||
home.packages = with pkgs; [ openmw ];
|
||||
home = {
|
||||
packages = with pkgs; [ openmw ];
|
||||
sessionVariables = {
|
||||
SDL_VIDEO_DRIVER = "wayland";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,13 +1,9 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
kdePackages.qttools
|
||||
eza
|
||||
pigz
|
||||
];
|
||||
|
||||
programs.fish = {
|
||||
|
|
@ -15,6 +11,7 @@
|
|||
shellAliases = {
|
||||
ssh = "kitty-ssh";
|
||||
cat = "bat";
|
||||
gzip = "pigz";
|
||||
ls = "eza";
|
||||
gl = "git log";
|
||||
ga = "git add -v .";
|
||||
|
|
|
|||
|
|
@ -113,9 +113,10 @@ in
|
|||
settings = {
|
||||
include = "/home/${config.userOptions.username}/.config/kitty/themes/kitty-colors.conf";
|
||||
scrollback_lines = 10000;
|
||||
wheel_scroll_multiplier = 5.0;
|
||||
touch_scroll_multiplier = 5.0;
|
||||
enable_audio_bell = false;
|
||||
update_check_interval = 0;
|
||||
wheel_scroll_multiplier = 10.0;
|
||||
confirm_os_window_close = 0;
|
||||
window_padding_width = 4;
|
||||
tab_bar_min_tabs = 2;
|
||||
|
|
|
|||
|
|
@ -132,10 +132,10 @@
|
|||
window-rules = [
|
||||
{
|
||||
geometry-corner-radius = {
|
||||
top-left = 16.0;
|
||||
top-right = 16.0;
|
||||
bottom-left = 16.0;
|
||||
bottom-right = 16.0;
|
||||
top-left = 8.0;
|
||||
top-right = 8.0;
|
||||
bottom-left = 8.0;
|
||||
bottom-right = 8.0;
|
||||
};
|
||||
clip-to-geometry = true;
|
||||
opacity = 1.0;
|
||||
|
|
@ -495,6 +495,12 @@
|
|||
"Mod+Shift+Minus".action.set-window-height = "-10%";
|
||||
"Mod+Shift+Equal".action.set-window-height = "+10%";
|
||||
|
||||
"Mod+Ctrl+Minus".action.set-column-width = "-1%";
|
||||
"Mod+Ctrl+Equal".action.set-column-width = "+1%";
|
||||
|
||||
"Mod+Ctrl+Shift+Minus".action.set-window-height = "-1%";
|
||||
"Mod+Ctrl+Shift+Equal".action.set-window-height = "+1%";
|
||||
|
||||
"Mod+V".action.toggle-window-floating = { };
|
||||
"Mod+Shift+V".action.switch-focus-between-floating-and-tiling = { };
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
mOnTertiary = base00;
|
||||
mError = base12;
|
||||
mOnError = base00;
|
||||
mSurface = base00;
|
||||
mSurface = "#000000";
|
||||
mOnSurface = base05;
|
||||
mSurfaceVariant = base01;
|
||||
mOnSurfaceVariant = base05;
|
||||
|
|
@ -35,7 +35,7 @@
|
|||
backgroundOpacity = 1;
|
||||
monitors = [ ];
|
||||
density = "spacious";
|
||||
showCapsule = true;
|
||||
showCapsule = false;
|
||||
capsuleOpacity = 1;
|
||||
floating = false;
|
||||
marginVertical = 0.25;
|
||||
|
|
@ -68,7 +68,7 @@
|
|||
colorizeIcons = false;
|
||||
hideMode = "hidden";
|
||||
id = "ActiveWindow";
|
||||
maxWidth = 500;
|
||||
maxWidth = 600;
|
||||
scrollingMode = "always";
|
||||
showIcon = true;
|
||||
useFixedWidth = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue