update
This commit is contained in:
+1
-1
@@ -1,7 +1,7 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
firefox
|
||||
firefox-bin
|
||||
vimb
|
||||
];
|
||||
}
|
||||
|
||||
+3
-2
@@ -1,10 +1,11 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
home.packages = (with pkgs.unstable; [
|
||||
freecad
|
||||
kicad
|
||||
kicadAddons.kikit
|
||||
freecad
|
||||
openscad-unstable
|
||||
]) ++ (with pkgs; [
|
||||
librecad
|
||||
openscad
|
||||
]);
|
||||
}
|
||||
|
||||
@@ -14,6 +14,7 @@ in
|
||||
./picom.nix
|
||||
./tmux.nix
|
||||
./vim.nix
|
||||
./xterm.nix
|
||||
./zed.nix
|
||||
./zsh.nix
|
||||
];
|
||||
|
||||
@@ -91,6 +91,8 @@ in
|
||||
"XF86AudioMute" = ''exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle'';
|
||||
"XF86MonBrightnessUp" = ''exec --no-startup-id brightnessctl set 5%+'';
|
||||
"XF86MonBrightnessDown" = ''exec --no-startup-id brightnessctl set 5%-'';
|
||||
"F15" = ''exec --no-startup-id setxkbmap -layout my-sym'';
|
||||
"Shift+F15" = ''exec --no-startup-id setxkbmap -layout my-sym-dvp'';
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
+12
-4
@@ -2,7 +2,7 @@
|
||||
{
|
||||
services.picom = {
|
||||
enable = true;
|
||||
backend = "egl";
|
||||
backend = "glx";
|
||||
fade = true;
|
||||
fadeDelta = 5;
|
||||
fadeExclude = [
|
||||
@@ -10,9 +10,17 @@
|
||||
"focused = 1"
|
||||
];
|
||||
inactiveOpacity = 0.9;
|
||||
shadow = true;
|
||||
shadowExclude = [
|
||||
"focused = 1"
|
||||
opacityRules = [
|
||||
"100:name = 'Picture-in-Picture'"
|
||||
"80:class_g = 'XTerm' && focused"
|
||||
"67:class_g = 'i3-frame'"
|
||||
];
|
||||
settings = {
|
||||
blur = {
|
||||
method = "gaussian";
|
||||
size = 16;
|
||||
deviation = 8.0;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
{
|
||||
xresources.properties = {
|
||||
"xterm*utf8" = 1;
|
||||
"xterm*locale" = true;
|
||||
"xterm*faceName" = "Moralerspace Neon:size=12:antialias=true";
|
||||
"xterm*reverseVideo" = "on";
|
||||
"xterm*saveLines" = 10000;
|
||||
"xterm*geometry" = "80x24";
|
||||
};
|
||||
}
|
||||
+3
-3
@@ -48,15 +48,15 @@
|
||||
thumb = "always";
|
||||
current_line_highlight = "line";
|
||||
};
|
||||
buffer_font_size = 16;
|
||||
buffer_font_size = 11;
|
||||
buffer_font_family = "0xProto Nerd Font Mono";
|
||||
ui_font_size = 14;
|
||||
ui_font_size = 12;
|
||||
cursor_shape = "block";
|
||||
format_on_save = "off";
|
||||
terminal = {
|
||||
blinking = "on";
|
||||
font_family = "Moralerspace Argon";
|
||||
font_size = 14;
|
||||
font_size = 12;
|
||||
scroll_multiplier = 5.0;
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user