rebuilding minimised nix files

This commit is contained in:
2026-03-02 19:30:54 +01:00
parent 5c89fda8ac
commit 9afb4a25d5
3 changed files with 320 additions and 320 deletions
+308 -308
View File
File diff suppressed because it is too large Load Diff
+5 -5
View File
@@ -18,11 +18,11 @@ zen-browser = {
url = "github:youwen5/zen-browser-flake"; url = "github:youwen5/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
# hyprland.url = "github:hyprwm/Hyprland"; hyprland.url = "github:hyprwm/Hyprland";
# hyprland-plugins = { hyprland-plugins = {
# url = "github:hyprwm/hyprland-plugins"; url = "github:hyprwm/hyprland-plugins";
# inputs.hyprland.follows = "hyprland"; inputs.hyprland.follows = "hyprland";
# }; };
}; };
outputs = inputs@{ outputs = inputs@{
nixpkgs, nixpkgs,
+7 -7
View File
@@ -1,13 +1,13 @@
{ config, lib, pkgs, flakeRoot, ... }: { config, lib, pkgs, flakeRoot, inputs, ... }:
{ {
home.packages = with pkgs; [ jq ]; home.packages = with pkgs; [ jq ];
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; enable = true;
plugins = [ pkgs.hyprlandPlugins.hyprscrolling plugins = with inputs.hyprland-plugins.packages.${pkgs.system}; [
pkgs.hyprlandPlugins.hyprspace hyprscrolling
# pkgs.hyprlandPlugins.hyprsunset hyprspace
pkgs.hyprlandPlugins.HyprEasymotion hyprsunset
HyprEasymotion
]; ];
}; };
} }