Update Hyprland settings
This commit is contained in:
@@ -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
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
voicevox-core
|
||||
voicevox-engine
|
||||
voicevox
|
||||
];
|
||||
}
|
||||
@@ -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";
|
||||
}
|
||||
Reference in New Issue
Block a user