Compare commits
5 Commits
bcf3266d15
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 405622c038 | |||
| 4b3128ae62 | |||
| 179de9600b | |||
| 7c85a26f5a | |||
| e7dc282b0b |
@@ -23,7 +23,6 @@
|
||||
hardware.graphics = {
|
||||
enable = true;
|
||||
extraPackages = with pkgs; [
|
||||
vaapiIntel
|
||||
vpl-gpu-rt # Intel GPU support
|
||||
|
||||
intel-media-driver # LIBVA_DRIVER_NAME=iHD
|
||||
|
||||
@@ -12,9 +12,9 @@
|
||||
# X11 server configuration (for compatibility)
|
||||
xserver = {
|
||||
enable = true;
|
||||
displayManager.gdm.enable = false; # Disable GDM in favor of regreet
|
||||
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
|
||||
greetd.enable = true;
|
||||
|
||||
@@ -101,25 +101,26 @@ in {
|
||||
|
||||
# Layer rules
|
||||
layerrule = [
|
||||
"match:namespace waybar, blur on" # Blur waybar
|
||||
"match:namespace waybar, ignore_alpha 0.5"
|
||||
"match:namespace hyprpicker, no_anim on" # fix screenshot border visible
|
||||
"match:namespace selection, no_anim on" # fix screenshot border visible
|
||||
"blur, waybar" # Blur waybar
|
||||
"ignorezero, waybar"
|
||||
"ignorealpha 0.5, waybar"
|
||||
"noanim, hyprpicker" # fix screenshot border visible
|
||||
"noanim, selection" # fix screenshot border visible
|
||||
];
|
||||
|
||||
# Window rules
|
||||
windowrule = [
|
||||
# Nice transparency for some apps (unless in fullscreen)
|
||||
"match:class ^(cursor)$, match:fullscreen false, opacity 0.9"
|
||||
"match:class ^(firefox)$, match:fullscreen false, opacity 0.9"
|
||||
"match:class ^(GitKraken)$, match:fullscreen false, opacity 0.9"
|
||||
"match:class ^(obsidian)$, match:fullscreen false, opacity 0.9"
|
||||
"opacity 0.9,fullscreen:0,class:^(cursor)$"
|
||||
"opacity 0.9,fullscreen:0,class:^(firefox)$"
|
||||
"opacity 0.9,fullscreen:0,class:^(GitKraken)$"
|
||||
"opacity 0.9,fullscreen:0,class:^(obsidian)$"
|
||||
|
||||
# Ensure hyprland tearing on games
|
||||
"match:class ^(steam_app)$, immediate on"
|
||||
"immediate,class:^(steam_app)$"
|
||||
|
||||
# Keep Rofi focused
|
||||
"match:class ^(Rofi)$, stay_focused on"
|
||||
"stayfocused, class:^(Rofi)$"
|
||||
];
|
||||
|
||||
# Bindings
|
||||
|
||||
@@ -1,19 +1,17 @@
|
||||
{
|
||||
services.hyprsunset = {
|
||||
enable = true;
|
||||
transitions = {
|
||||
sunrise = {
|
||||
calendar = "*-*-* 06:00:00";
|
||||
requests = [
|
||||
["identity"]
|
||||
settings = {
|
||||
profile = [
|
||||
{
|
||||
time = "06:00";
|
||||
identity = true;
|
||||
}
|
||||
{
|
||||
time = "20:00";
|
||||
temperature = 5000;
|
||||
}
|
||||
];
|
||||
};
|
||||
sunset = {
|
||||
calendar = "*-*-* 20:00:00";
|
||||
requests = [
|
||||
["temperature" "5000"]
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
{
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
serverAliveInterval = 60;
|
||||
serverAliveCountMax = 2;
|
||||
|
||||
enableDefaultConfig = false;
|
||||
matchBlocks = {
|
||||
"*" = {
|
||||
serverAliveInterval = 60;
|
||||
serverAliveCountMax = 2;
|
||||
sendEnv = ["TERM"];
|
||||
setEnv = {
|
||||
TERM = "xterm-256color"; # Fix ghostty issue
|
||||
|
||||
@@ -48,9 +48,10 @@ in {
|
||||
git-filter-repo
|
||||
git-secrets
|
||||
|
||||
bun
|
||||
python3
|
||||
hugo
|
||||
nodejs_22
|
||||
nodejs_24
|
||||
pnpm
|
||||
cypress
|
||||
pgadmin4-desktopmode
|
||||
|
||||
Reference in New Issue
Block a user