From 557f8f8de0a8352671c6b229f7933c96bb716f49 Mon Sep 17 00:00:00 2001 From: Henry Sipp Date: Tue, 1 Jul 2025 20:24:13 +0000 Subject: [PATCH] Cleanup --- modules/home-manager/hyprland/bindings.nix | 2 -- modules/home-manager/hyprland/looknfeel.nix | 2 +- modules/home-manager/mako.nix | 15 --------------- modules/nixos/system.nix | 1 - 4 files changed, 1 insertion(+), 19 deletions(-) diff --git a/modules/home-manager/hyprland/bindings.nix b/modules/home-manager/hyprland/bindings.nix index dc30744..9b9b152 100644 --- a/modules/home-manager/hyprland/bindings.nix +++ b/modules/home-manager/hyprland/bindings.nix @@ -9,8 +9,6 @@ in { bind = cfg.quick_app_bindings ++ [ - # Start default apps - "SUPER, space, exec, wofi --show drun --sort-order=alphabetical" "SUPER SHIFT, SPACE, exec, pkill -SIGUSR1 waybar" # "SUPER CTRL, SPACE, exec, ~/.local/share/omarchy/bin/swaybg-next" diff --git a/modules/home-manager/hyprland/looknfeel.nix b/modules/home-manager/hyprland/looknfeel.nix index 710bd79..24f699e 100644 --- a/modules/home-manager/hyprland/looknfeel.nix +++ b/modules/home-manager/hyprland/looknfeel.nix @@ -13,6 +13,7 @@ in "rgba(${cleanHex}${alpha})"; # Special handling for tokyo-night gradient + # Probably shouldn't be here. activeBorder = if cfg.theme == "tokyo-night" then "${hexToRgba theme.accent "ee"} ${hexToRgba theme.success "ee"} 45deg" @@ -57,7 +58,6 @@ in { animations = { enabled = true; # yes, please :) - # Default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more bezier = [ "easeOutQuint,0.23,1,0.32,1" "easeInOutCubic,0.65,0.05,0.36,1" diff --git a/modules/home-manager/mako.nix b/modules/home-manager/mako.nix index 9188f99..3509b75 100644 --- a/modules/home-manager/mako.nix +++ b/modules/home-manager/mako.nix @@ -10,15 +10,12 @@ in { services.mako = { enable = true; - # All configuration moved to settings settings = { - # Main appearance settings background-color = theme.background; text-color = theme.foreground; border-color = theme.accent; progress-color = theme.primary; - # Dimensions and positioning width = 420; height = 110; padding = "10"; @@ -26,30 +23,18 @@ in { border-size = 2; border-radius = 8; - # Font - # font = "Liberation Sans 11"; - - # Positioning anchor = "top-right"; layer = "overlay"; - # Behavior default-timeout = 5000; ignore-timeout = false; max-visible = 5; sort = "-time"; - # Icons - # max-icon-size = 32; - # icon-path = "/usr/share/icons/Papirus-Dark"; - - # Grouping group-by = "app-name"; - # Actions actions = true; - # Format format = "%s\\n%b"; markup = true; }; diff --git a/modules/nixos/system.nix b/modules/nixos/system.nix index 1e9be3f..202b3f4 100644 --- a/modules/nixos/system.nix +++ b/modules/nixos/system.nix @@ -38,5 +38,4 @@ in { noto-fonts-emoji nerd-fonts.caskaydia-mono ]; - # services.samba.enable = true; }