Compare commits

...

5 Commits

Author SHA1 Message Date
405622c038 depracations and fixes 2025-12-21 14:06:29 +01:00
4b3128ae62 add bun and update node 2025-12-21 14:06:04 +01:00
179de9600b fix intel driver hurricane 2025-12-09 10:52:35 +01:00
7c85a26f5a hyprland config not yet working in v0.52.1
wait for update, then revert this commit
2025-12-08 16:21:47 +01:00
e7dc282b0b fix ghostty theme 2025-12-08 16:19:39 +01:00
7 changed files with 29 additions and 30 deletions

View File

@@ -23,7 +23,6 @@
hardware.graphics = { hardware.graphics = {
enable = true; enable = true;
extraPackages = with pkgs; [ extraPackages = with pkgs; [
vaapiIntel
vpl-gpu-rt # Intel GPU support vpl-gpu-rt # Intel GPU support
intel-media-driver # LIBVA_DRIVER_NAME=iHD intel-media-driver # LIBVA_DRIVER_NAME=iHD

View File

@@ -12,9 +12,9 @@
# X11 server configuration (for compatibility) # X11 server configuration (for compatibility)
xserver = { xserver = {
enable = true; enable = true;
displayManager.gdm.enable = false; # Disable GDM in favor of regreet
excludePackages = [pkgs.xterm]; # Exclude xterm from the list of packages to install excludePackages = [pkgs.xterm]; # Exclude xterm from the list of packages to install
}; };
displayManager.gdm.enable = false; # Disable GDM in favor of regreet
# Lightweight Wayland-native display manager # Lightweight Wayland-native display manager
greetd.enable = true; greetd.enable = true;

View File

@@ -4,7 +4,7 @@
enableFishIntegration = true; enableFishIntegration = true;
settings = { settings = {
"font-family" = "Intel One Mono"; "font-family" = "Intel One Mono";
"theme" = "GruvboxDark"; "theme" = "Gruvbox Dark";
"background-opacity" = 0.6; "background-opacity" = 0.6;
}; };
}; };

View File

@@ -101,25 +101,26 @@ in {
# Layer rules # Layer rules
layerrule = [ layerrule = [
"match:namespace waybar, blur on" # Blur waybar "blur, waybar" # Blur waybar
"match:namespace waybar, ignore_alpha 0.5" "ignorezero, waybar"
"match:namespace hyprpicker, no_anim on" # fix screenshot border visible "ignorealpha 0.5, waybar"
"match:namespace selection, no_anim on" # fix screenshot border visible "noanim, hyprpicker" # fix screenshot border visible
"noanim, selection" # fix screenshot border visible
]; ];
# Window rules # Window rules
windowrule = [ windowrule = [
# Nice transparency for some apps (unless in fullscreen) # Nice transparency for some apps (unless in fullscreen)
"match:class ^(cursor)$, match:fullscreen false, opacity 0.9" "opacity 0.9,fullscreen:0,class:^(cursor)$"
"match:class ^(firefox)$, match:fullscreen false, opacity 0.9" "opacity 0.9,fullscreen:0,class:^(firefox)$"
"match:class ^(GitKraken)$, match:fullscreen false, opacity 0.9" "opacity 0.9,fullscreen:0,class:^(GitKraken)$"
"match:class ^(obsidian)$, match:fullscreen false, opacity 0.9" "opacity 0.9,fullscreen:0,class:^(obsidian)$"
# Ensure hyprland tearing on games # Ensure hyprland tearing on games
"match:class ^(steam_app)$, immediate on" "immediate,class:^(steam_app)$"
# Keep Rofi focused # Keep Rofi focused
"match:class ^(Rofi)$, stay_focused on" "stayfocused, class:^(Rofi)$"
]; ];
# Bindings # Bindings

View File

@@ -1,19 +1,17 @@
{ {
services.hyprsunset = { services.hyprsunset = {
enable = true; enable = true;
transitions = { settings = {
sunrise = { profile = [
calendar = "*-*-* 06:00:00"; {
requests = [ time = "06:00";
["identity"] identity = true;
}
{
time = "20:00";
temperature = 5000;
}
]; ];
}; };
sunset = {
calendar = "*-*-* 20:00:00";
requests = [
["temperature" "5000"]
];
};
};
}; };
} }

View File

@@ -1,11 +1,11 @@
{ {
programs.ssh = { programs.ssh = {
enable = true; enable = true;
serverAliveInterval = 60; enableDefaultConfig = false;
serverAliveCountMax = 2;
matchBlocks = { matchBlocks = {
"*" = { "*" = {
serverAliveInterval = 60;
serverAliveCountMax = 2;
sendEnv = ["TERM"]; sendEnv = ["TERM"];
setEnv = { setEnv = {
TERM = "xterm-256color"; # Fix ghostty issue TERM = "xterm-256color"; # Fix ghostty issue

View File

@@ -48,9 +48,10 @@ in {
git-filter-repo git-filter-repo
git-secrets git-secrets
bun
python3 python3
hugo hugo
nodejs_22 nodejs_24
pnpm pnpm
cypress cypress
pgadmin4-desktopmode pgadmin4-desktopmode