Hyprland configuration framework.
0

Configure Feed

Select the types of activity you want to include in your feed.

keep-sorted

Adam0 (Jul 4, 2026, 12:59 AM +0200) ba06fe85 decc865d

+9 -2
+2
modules/hylix/events.nix
··· 41 41 42 42 type = listOf (submodule { 43 43 options = { 44 + # keep-sorted start block=yes newline_separated=yes 44 45 event = mkOption { 45 46 description = "hyprland event name (e.g. \"hyprland.start\", \"window.active\", \"workspace.active\")"; 46 47 ··· 60 61 type = nullOr str; 61 62 default = null; 62 63 }; 64 + # keep-sorted end 63 65 }; 64 66 }); 65 67 default = [];
+2
modules/hylix/notifications.nix
··· 41 41 42 42 type = listOf (submodule { 43 43 options = { 44 + # keep-sorted start block=yes newline_separated=yes 44 45 group = mkOption { 45 46 description = "notification group for grouping/dedup"; 46 47 ··· 67 68 type = int; 68 69 default = 5000; 69 70 }; 71 + # keep-sorted end 70 72 }; 71 73 }); 72 74 default = [];
+2
modules/tests.nix
··· 1 1 { 2 + # keep-sorted start 2 3 config, 3 4 inputs, 5 + # keep-sorted end 4 6 ... 5 7 }: { 6 8 perSystem = {system, ...}: let
+1 -2
modules/treefmt.nix
··· 7 7 # keep-sorted start 8 8 alejandra.enable = true; 9 9 deadnix.enable = true; 10 + keep-sorted.enable = true; 10 11 nixf-diagnose.enable = true; 11 12 statix.enable = true; 12 13 # keep-sorted end 13 - 14 - keep-sorted.enable = true; 15 14 }; 16 15 17 16 projectRootFile = "flake.nix";
+2
modules/wrappers/home-manager.nix
··· 27 27 in { 28 28 flake.homeManagerModules.default = { 29 29 imports = [ 30 + # keep-sorted start 30 31 config.flake.modules.generic.hylix 31 32 hmModule 33 + # keep-sorted end 32 34 ]; 33 35 }; 34 36 }