Update Hyprland settings

This commit is contained in:
2026-02-19 09:30:42 +09:00
parent 0762ccc9bc
commit e3de591a27
11 changed files with 106 additions and 49 deletions
+3 -5
View File
@@ -1,9 +1,7 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
(pkgs.blender-hip.overrideAttrs (oldAttrs: {
# Workaround for this: https://github.com/NixOS/nixpkgs/pull/385913
cmakeFlags = oldAttrs.cmakeFlags ++ [ "-DWITH_ASSERT_ABORT=OFF" ];
}))
blender
];
}
}
+8 -8
View File
@@ -76,14 +76,13 @@ let
disable_splash_rendering = true;
};
windowrulev2 = [
"animation windowsIn 0,title:^(.*wofi.*)$"
"float,title:^(.*feh.*)$"
"center,title:^(.*feh.*)$"
"float,title:^(Picture.*)$"
"pin,title:^(Picture.*)$"
"immediate, class:^(Terraria)$"
"idleinhibit fullscreen, class:^(steam_app.*)$"
windowrule = [
"animation windowsIn 0, match:title ^(.*wofi.*)$"
"float on, match:title ^(.*feh.*)$"
"center on, match:title ^(.*feh.*)$"
"float on, match:title ^(Picture.*)$"
"pin on, match:title ^(Picture.*)$"
"immediate on, match:class ^(Terraria)$"
];
workspace = [
@@ -243,6 +242,7 @@ in
++ (with pkgs; [
swww
eww
hyprshot
]);
home.sessionVariables = {
HYPRCURSOR_THEME = "rose-pine-hyprcursor";
+8
View File
@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
voicevox-core
voicevox-engine
voicevox
];
}
+22
View File
@@ -0,0 +1,22 @@
{ pkgs, ... }:
{
programs.zed-editor = {
enable = true;
extensions = [ "nix" "toml" "rust" ];
userSettings = {
theme = {
mode = "system";
dark = "Kanagawa Dragon";
light = "Kanagawa Lotus";
};
hour_format = "hour24";
vim_mode = true;
buffer_font_size = 12.0;
buffer_font_family = "PlemolJP Console NF";
};
};
fonts.fontconfig.enable = true;
home.file.".local/share/fonts/plemoljp".source = "${pkgs.plemoljp-nf}/share/fonts/truetype/plemoljp-nf-console";
}