This commit is contained in:
2026-06-30 10:59:25 +09:00
parent 562e5d0e97
commit d0c05a7b85
16 changed files with 196 additions and 65 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
firefox
firefox-bin
vimb
];
}
+3 -2
View File
@@ -1,10 +1,11 @@
{ config, pkgs, ... }:
{
home.packages = (with pkgs.unstable; [
freecad
kicad
kicadAddons.kikit
freecad
openscad-unstable
]) ++ (with pkgs; [
librecad
openscad
]);
}
+1
View File
@@ -14,6 +14,7 @@ in
./picom.nix
./tmux.nix
./vim.nix
./xterm.nix
./zed.nix
./zsh.nix
];
+2
View File
@@ -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
View File
@@ -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;
};
};
};
}
+11
View File
@@ -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
View File
@@ -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;
};
};