20205-10-04

This commit is contained in:
2025-10-04 02:58:56 +09:00
parent 92bd37ab71
commit 9ac4e308f6
19 changed files with 253 additions and 55 deletions
+9
View File
@@ -0,0 +1,9 @@
{ 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" ];
}))
];
}
+6
View File
@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
code-cursor
];
}
+36 -7
View File
@@ -1,4 +1,5 @@
{ pkgs, ... }: {
{ pkgs, ... }:
{
wayland.windowManager.hyprland = {
enable = true;
systemd.enable = false;
@@ -23,6 +24,8 @@
"dconf write /org/gnome/desktop/interface/monospace-font-name 'Noto Sans Mono Medium 11'"
];
ecosystem.no_update_news = true;
input = {
kb_layout = "us";
kb_variant = "";
@@ -41,10 +44,10 @@
};
general = {
gaps_in = 8;
gaps_out = 10;
border_size = 4;
"col.active_border" = "rgba(6e848cee) rgba(ffffffee) 45deg";
gaps_in = 4;
gaps_out = 7;
border_size = 3;
"col.active_border" = "rgba(6e848cee) rgba(eeeeffee) 90deg";
"col.inactive_border" = "rgba(595959aa)";
layout = "dwindle";
allow_tearing = true;
@@ -101,6 +104,7 @@
"float,title:^(Picture.*)$"
"pin,title:^(Picture.*)$"
"immediate, class:^(Terraria)$"
"idleinhibit fullscreen, class:^(steam_app.*)$"
];
workspace = [
@@ -184,9 +188,13 @@
plugins = [
];
};
home.packages = with pkgs; [
swww
eww
];
home.sessionVariables = {
HYPRCURSOR_THEME = "";
HYPRCURSOR_SIZE = "12";
HYPRCURSOR_THEME = "rose-pine-hyprcursor";
HYPRCURSOR_SIZE = "24";
XCURSOR_SIZE = "24";
GTK_BACKEND = "wayland";
QT_QPA_PLATFORM = "wayland;xcb";
@@ -195,4 +203,25 @@
XDG_CURRENT_DESKTOP = "Hyprland";
XDG_SESSION_DESKTOP = "Hyprland";
};
services.fnott = {
enable = true;
settings = {
main = {
anchor = "bottom-right";
min-width = 400;
title-font = "Noto Sans Medium:size=12";
title-color = "ffffffff";
title-format = "<i>%a%A</i>";
summary-font = "Noto Sans Regular:size=16";
summary-color = "ffffffff";
summary-format = "%s\n";
body-font = "Noto Sans Regular:size=14";
body-color = "ffffffff";
body-format = "%b";
background = "1a1a1aee";
border-radius = 10;
};
};
};
}
+11
View File
@@ -0,0 +1,11 @@
{ pkgs, ... }:
{
programs.vscode = {
enable = true;
package = pkgs.vscode.fhs;
profiles.default = {
extensions = with pkgs.vscode-extensions; [
];
};
};
}