my over complex system configurations dotfiles.isabelroses.com/
nixos nix flake dotfiles linux
9
fork

Configure Feed

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

flake/programs/formatter: add yamlfmt

isabel 180fc2e9 ce0520b0

+21 -8
+8 -8
.sops.yaml
··· 12 12 - path_regex: secrets/isabel\.yaml 13 13 key_groups: 14 14 - age: 15 - - *isabel 15 + - *isabel 16 16 17 17 - path_regex: secrets/services/[^/]+\.(yaml|json|env|ini)$ 18 18 key_groups: 19 19 - age: 20 - - *isabel 21 - - *minerva 22 - - *skadi 23 - - *athena 24 - - *aphrodite 25 - - *isis 26 - - *hephaestus 20 + - *isabel 21 + - *minerva 22 + - *skadi 23 + - *athena 24 + - *aphrodite 25 + - *isis 26 + - *hephaestus
+13
modules/flake/programs/formatter.nix
··· 15 15 statix 16 16 stylua 17 17 taplo 18 + yamlfmt 18 19 zizmor 19 20 # keep-sorted end 20 21 ··· 99 100 command = "taplo"; 100 101 options = "format"; 101 102 includes = [ "*.toml" ]; 103 + }; 104 + 105 + yamlfmt = { 106 + command = "yamlfmt"; 107 + options = [ 108 + "-formatter" 109 + "retain_line_breaks_single=true" 110 + ]; 111 + includes = [ 112 + "*.yml" 113 + "*.yaml" 114 + ]; 102 115 }; 103 116 104 117 zizmor = {