diff --git a/flake.nix b/flake.nix index 1890e42a..b32a5420 100644 --- a/flake.nix +++ b/flake.nix @@ -6,11 +6,6 @@ url = "github:hyprwm/Hyprland"; }; - hyprland-plugins = { - url = "github:snehrbass/sn-hyprland-plugins/sn-win-filter"; - inputs.hyprland.follows = "hyprland"; - }; - home-manager = { url = "github:donovanglover/home-manager/personal-master"; inputs.nixpkgs.follows = "nixpkgs"; diff --git a/home/hyprland.nix b/home/hyprland.nix index cef79854..7a6f01de 100644 --- a/home/hyprland.nix +++ b/home/hyprland.nix @@ -98,22 +98,6 @@ in layout = master } - plugin { - hyprbars { - bar_color = rgba(${base00}F2) - bar_height = 30 - col.text = rgba(${base05}99) - bar_text_size = 9 - bar_text_font = Maple Mono - exclude_windowrulev2 = floating:0,title:^(Easy Effects|Volume Control|Bluetooth|iwgtk)$ - buttons { - button_size = 14 - col.maximize = rgba(${base04}cc) - col.close = rgba(${base05}cc) - } - } - } - decoration { rounding = 0 blur = yes diff --git a/modules/packages.nix b/modules/packages.nix index f2ac59bd..c8a72515 100644 --- a/modules/packages.nix +++ b/modules/packages.nix @@ -1,4 +1,4 @@ -{ pkgs, lib, sakaya, hyprland-plugins, ... }: +{ pkgs, lib, sakaya, ... }: { environment.systemPackages = with pkgs; [ @@ -22,7 +22,6 @@ sqlitebrowser kanjidraw libreoffice - hyprland-plugins.packages.${pkgs.system}.hyprbars gdu fdupes @@ -102,11 +101,6 @@ nix-init ]; - programs.fish.shellAliases = { - hyprbars = "hyprctl plugin load ${hyprland-plugins.packages.${pkgs.system}.hyprbars}/lib/libhyprbars.so"; - nobars = "hyprctl plugin unload ${hyprland-plugins.packages.${pkgs.system}.hyprbars}/lib/libhyprbars.so"; - }; - nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "osu-lazer-bin" ];