NAHO
628e990dde
treewide: apply Nixpkgs update
...
Fixes: efd80454b4 ("flake: update nixpkgs input")
Co-authored-by: 0xda157 <da157@voidq.com>
2025-11-17 16:08:01 +01:00
Kira Sokolova
a6cf775997
yazi: allow to set boldness of directory ( #1696 )
...
Link: https://github.com/nix-community/stylix/pull/1696
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
Reviewed-by: awwpotato <awwpotato@voidq.com>
2025-07-27 11:40:02 -07:00
NAHO
2e2e96f6b0
treewide: remove blank lines around 'let', 'in', and function arguments ( #1700 )
...
Link: https://github.com/nix-community/stylix/pull/1700
Reviewed-by: awwpotato <awwpotato@voidq.com>
2025-07-19 10:41:36 -07:00
musjj
9724654e8d
yazi: update tabs theming style ( #1480 )
...
Link: https://github.com/nix-community/stylix/pull/1480
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-06-13 00:10:26 +02:00
Fea
b69e9b761e
yazi: Change deprecated "manager" to new name "mgr" ( #1424 )
...
Link: https://github.com/nix-community/stylix/pull/1424
Reviewed-by: awwpotato <awwpotato@voidq.com>
2025-05-30 16:03:29 +00:00
Flameopathic
17398c4fce
treewide: name default testbeds
2025-05-24 08:53:58 -04:00
awwpotato
7ffb31da69
treewide: use mkTarget (batch 2) ( #1362 )
...
Link: https://github.com/nix-community/stylix/pull/1362
Reviewed-by: Flameopathic <64027365+Flameopathic@users.noreply.github.com>
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-05-23 19:23:39 +02:00
Flameopathic
e2fe2df9b0
doc: restructure module rendering ( #1083 )
2025-05-18 14:09:50 +01:00
musjj
77696d77ae
yazi: more color tweaks ( #1245 )
...
Link: https://github.com/danth/stylix/pull/1245
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-05-12 01:10:42 +02:00
musjj
6690180c17
yazi: tweak colors ( #1233 )
...
Link: https://github.com/danth/stylix/pull/1233
Reviewed-by: awwpotato <awwpotato@voidq.com>
2025-05-09 09:05:01 -07:00
Flameopathic
8a35410a28
treewide: add stylix.testbed.ui.{command,application} options ( #1110 )
...
Link: https://github.com/danth/stylix/pull/1110
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
Reviewed-by: awwpotato <awwpotato@voidq.com>
2025-04-29 19:59:16 +02:00
Flameopathic
82f67a36eb
doc: align module capitalization ( #1115 )
...
Closes: https://github.com/danth/stylix/issues/1084
Link: https://github.com/danth/stylix/pull/1115
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
Reviewed-by: Daniel Thwaites <danth@danth.me>
Reviewed-by: awwpotato <153149335+awwpotato@users.noreply.github.com>
2025-04-10 08:45:51 +02:00
awwpotato
e43eb4e2a7
stylix: init module maintainers framework ( #977 )
...
Initialize module maintainers framework to streamline the future
population of module maintainers [1].
[1]: https://github.com/danth/stylix/issues/275
Link: https://github.com/danth/stylix/pull/977
Reviewed-by: Daniel Thwaites <danth@danth.me>
Co-authored-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-03-14 19:29:51 +01:00
awwpotato
489833b201
treewide: give mustache files correct file extensions ( #946 )
...
makes the filetype of the file more clear and makes it possible for
editorconfig (#945 ) to work for these files
2025-03-02 23:48:43 +00:00
NAHO
211a8440e7
stylix: support multiple testbeds per module ( #858 )
...
Support multiple testbeds per module with
/modules/<MODULE>/testbeds/<TESTBED>.nix, while validating various
invariants.
2025-02-17 12:56:46 +00:00
awwpotato
6d9867604e
treewide: reduce indentation level with lib.singleton ( #754 )
...
Reduce the indentation level with lib.singleton, as recommended by RFC 0166. [1]
[1]: 25c3f52463/rfcs/0166-nix-formatting.md (singleton-lists)
Link: https://github.com/danth/stylix/pull/754
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-01-08 02:01:45 +01:00
NAHO
ad64260a75
treewide: add and apply nixfmt pre-commit hook
...
Link: https://github.com/danth/stylix/pull/519
2025-01-04 17:48:26 +01:00
Sergei Zimmerman
0ce2a52dec
yazi: add testbed, resolve 0.4.0 breaking changes, and improve names ( #719 )
...
Add a testbed and resolve the 0.4.0 breaking changes [2] [3] [4].
Migrate the highlight colors to mnemonics with the following script to
improve readability and simplify the process of reusing upstream
templates [4]:
colors_base=(
"base08" "base09" "base0A" "base0B" "base0C" "base0D" "base0E"
"base0F"
)
colors_name=(
"red" "orange" "yellow" "green" "cyan" "blue" "magenta" "brown"
)
for i in "${!colors_base[@]}"; do
sed \
--in-place \
"s/${colors_base[i]}/${colors_name[i]}/g" \
modules/yazi/hm.nix
done
[1]: https://github.com/sxyazi/yazi/issues/1772
[2]: https://github.com/sxyazi/yazi/pull/1927
[3]: https://github.com/sxyazi/yazi/pull/1953
[4]: https://github.com/yazi-rs/flavors/blob/main/scripts/catppuccin/template.toml
Closes: https://github.com/danth/stylix/issues/604
Closes: https://github.com/danth/stylix/issues/683
Link: https://github.com/danth/stylix/pull/719
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-01-03 01:27:46 +01:00
Jalil David Salamé Messina
7682713f6a
stylix: add 'stylix.enable' option ( #244 )
...
Add a 'stylix.enable' option to enable or disable all Stylix modules in
order to resolve issues similar to [2].
To align with the default 'lib.mkEnableOption' [1] behavior,
'stylix.enable' defaults to 'false'.
BREAKING CHANGE: Stylix is disabled by default. To enable it, use:
stylix.enable = true;
[1]: https://github.com/NixOS/nixpkgs/blob/23.11/lib/options.nix#L91-L105
[2]: https://github.com/danth/stylix/issues/216
Co-authored-by: Daniel Thwaites <danthwaites30@btinternet.com>
Co-authored-by: Jalil David Salamé Messina <jalil.salame@gmail.com>
Co-authored-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2024-06-10 11:52:47 +02:00
xokdvium
32a7969292
yazi: init ( #229 )
2024-03-11 21:41:22 +00:00