Compare commits

..

9 commits

Author SHA1 Message Date
a6129237f7 flake.lock: Update
Flake lock file updates:

• Updated input 'ghostty':
    'git+ssh://git@github.com/ghostty-org/ghostty?ref=refs/heads/main&rev=14f603e691e13cb14855a4af8e9760a578f7aefd' (2024-11-19)
  → 'git+ssh://git@github.com/ghostty-org/ghostty?ref=refs/heads/main&rev=5f49ffad6a2dae1af3e186a5715d9553bbf94eb0' (2024-11-20)
• Updated input 'lix':
    'f116608a20.tar.gz?narHash=sha256-OjrXEVD8LtZB5X7LtPCdNx4n5iZOQ2nJmpDlM/foEkI%3D&rev=f116608a20430b8484814300cdf22eebeb75a59f' (2024-11-19)
  → 'b0d7a81613.tar.gz?narHash=sha256-3ubtSu0D%2BBUV5FKmBU7kTEXlI/okp/j1xC/ODC7LgTA%3D&rev=b0d7a816135de1cd551b8a54f5497148bf59d81d' (2024-11-19)
• Updated input 'nixpkgs-wayland':
    'github:nix-community/nixpkgs-wayland/1e388cad31a52c4dc25613484b3591298b105935' (2024-11-19)
  → 'github:nix-community/nixpkgs-wayland/15836268eff507e4e8b453cd57ea5b0e6e07f0da' (2024-11-20)
2024-11-20 17:46:49 +00:00
9b914e360f
use ref/tags/tag 2024-11-20 11:44:17 -06:00
8c1b6e7d31
input -> inputs 2024-11-20 11:33:47 -06:00
5184b724d3
add note to self 2024-11-20 11:30:43 -06:00
7475ee3d0f
pin hyprland 2024-11-20 11:24:05 -06:00
3f236615ff
support hosts arg for cron job 2024-11-20 11:03:15 -06:00
5e29472b29
support key-val hosts 2024-11-19 15:01:07 -06:00
70eb5db75a
actually stick to the "running" hosts 2024-11-19 15:01:07 -06:00
79e8348c84 flake.lock: Update
Flake lock file updates:

• Updated input 'ghostty':
    'git+ssh://git@github.com/ghostty-org/ghostty?ref=refs/heads/main&rev=e54ae31d1cf1816f5b9fb7e1fb77d6537dabace6' (2024-11-18)
  → 'git+ssh://git@github.com/ghostty-org/ghostty?ref=refs/heads/main&rev=14f603e691e13cb14855a4af8e9760a578f7aefd' (2024-11-19)
• Updated input 'hyprland':
    'git+https://github.com/hyprwm/Hyprland/?ref=refs/heads/main&rev=df9ff4489973afa9e29bb94ac47c946db745b460' (2024-11-18)
  → 'git+https://github.com/hyprwm/Hyprland/?ref=refs/heads/main&rev=67cee430061626ccd73dc6d30eed9db289053608' (2024-11-19)
• Updated input 'lix':
    'c859d03013.tar.gz?narHash=sha256-bq21I1EjXJa/s5Rra9J9ot2NkPCnI0F5uNPurwYLdpE%3D&rev=c859d03013712b349d82ee6223948d6d03e63a8d' (2024-11-15)
  → 'f116608a20.tar.gz?narHash=sha256-OjrXEVD8LtZB5X7LtPCdNx4n5iZOQ2nJmpDlM/foEkI%3D&rev=f116608a20430b8484814300cdf22eebeb75a59f' (2024-11-19)
• Updated input 'lix-module':
    '691193879d.tar.gz?narHash=sha256-RNaIu43b9PoXEhW4OqXUNZKY/jezQyCYWwdv1M0VjsA%3D&rev=691193879d96bdfd1e6ab5ebcca2fadc7604cf34' (2024-11-09)
  → 'aa2846680f.tar.gz?narHash=sha256-n6dPGRlMGdL8X5gviA6ZuRfUdbdD5KiNN/BpABA5YT0%3D&rev=aa2846680fa9a2032939d720487942567fd9eb63' (2024-11-18)
• Updated input 'lix-module/flake-utils':
    'github:numtide/flake-utils/c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a' (2024-09-17)
  → 'github:numtide/flake-utils/11707dc2f618dd54ca8739b309ec4fc024de578b' (2024-11-13)
• Updated input 'nixpkgs-wayland':
    'github:nix-community/nixpkgs-wayland/8cfa4547f95836136691e10493f18155694f198a' (2024-11-18)
  → 'github:nix-community/nixpkgs-wayland/1e388cad31a52c4dc25613484b3591298b105935' (2024-11-19)
2024-11-19 20:18:43 +00:00
5 changed files with 39 additions and 34 deletions

View file

@ -13,6 +13,9 @@ on:
# At minute 00:00 on Monday, Wednesday, and Friday.
- cron: 0 0 * * 1,3,5
env:
hosts: ${{ github.event_name == 'schedule' && 'othalan,algiz' || github.event.inputs.hosts }}
permissions:
contents: write
@ -58,7 +61,7 @@ jobs:
nix run .
--
cache
--host,="${{ inputs.hosts }}"
--host,="${{ env.hosts }}"
--flake .
--debug
--
@ -101,7 +104,7 @@ jobs:
nix run .
--
ci update
--host,="${{ inputs.hosts }}"
--host,="${{ env.hosts }}"
--flake .
--debug
--
@ -109,7 +112,7 @@ jobs:
- run: |
echo "# system diffs" >> $GITHUB_STEP_SUMMARY
hosts="${{ inputs.hosts }}"
hosts="${{ env.hosts }}"
for host in ${hosts//,/ }; do
echo "## $host" >> $GITHUB_STEP_SUMMARY
nix run "nixpkgs#nvd" -- --color always diff ./$host-current ./$host-updated >> $host-summary.md

View file

@ -20,11 +20,11 @@
]
},
"locked": {
"lastModified": 1731774881,
"narHash": "sha256-1Dxryiw8u2ejntxrrv3sMtIE8WHKxmlN4KeH+uMGbmc=",
"lastModified": 1730968822,
"narHash": "sha256-NocDjINsh6ismkhb0Xr6xPRksmhuB2WGf8ZmXMhxu7Y=",
"owner": "hyprwm",
"repo": "aquamarine",
"rev": "b31a6a4da8199ae3489057db7d36069a70749a56",
"rev": "a49bc3583ff223f426cb3526fdaa4bcaa247ec14",
"type": "github"
},
"original": {
@ -240,11 +240,11 @@
"zig": "zig"
},
"locked": {
"lastModified": 1732039947,
"narHash": "sha256-LgLGpeyimlCyHWzsQZ5xL0GJv+14zTVsAPTOuwL/qkA=",
"lastModified": 1732113449,
"narHash": "sha256-CWYbPttPsAFbfzfMO241UQBJ/kQclFXAXlQHIcGotss=",
"ref": "refs/heads/main",
"rev": "14f603e691e13cb14855a4af8e9760a578f7aefd",
"revCount": 8023,
"rev": "5f49ffad6a2dae1af3e186a5715d9553bbf94eb0",
"revCount": 8027,
"type": "git",
"url": "ssh://git@github.com/ghostty-org/ghostty"
},
@ -318,16 +318,17 @@
"xdph": "xdph"
},
"locked": {
"lastModified": 1732054045,
"narHash": "sha256-/2SKmO6AWDqvhN8A8VxA244Au3LwFu7wOXzudWQXr9s=",
"ref": "refs/heads/main",
"rev": "c4eda46d0ef022a17348623beec4154ba34af691",
"revCount": 5482,
"lastModified": 1731162467,
"narHash": "sha256-//Ib7gXCA8jq8c+QGTTIO0oH0rUYYBXGp8sqpI1jlhA=",
"ref": "refs/tags/v0.45.0",
"rev": "a425fbebe4cf4238e48a42f724ef2208959d66cf",
"revCount": 5433,
"submodules": true,
"type": "git",
"url": "https://github.com/hyprwm/Hyprland/"
},
"original": {
"ref": "refs/tags/v0.45.0",
"submodules": true,
"type": "git",
"url": "https://github.com/hyprwm/Hyprland/"
@ -438,11 +439,11 @@
]
},
"locked": {
"lastModified": 1731702627,
"narHash": "sha256-+JeO9gevnXannQxMfR5xzZtF4sYmSlWkX/BPmPx0mWk=",
"lastModified": 1730968903,
"narHash": "sha256-zFvzLXcSm0Ia4XI1SE4FQ9KE63hlGrRWhLtwMolWuR8=",
"owner": "hyprwm",
"repo": "hyprutils",
"rev": "e911361a687753bbbdfe3b6a9eab755ecaf1d9e1",
"rev": "3ce0cde8709cdacbfba471f8e828433b58a561e9",
"type": "github"
},
"original": {
@ -692,11 +693,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1731676054,
"narHash": "sha256-OZiZ3m8SCMfh3B6bfGC/Bm4x3qc1m2SVEAlkV6iY7Yg=",
"lastModified": 1730785428,
"narHash": "sha256-Zwl8YgTVJTEum+L+0zVAWvXAGbWAuXHax3KzuejaDyo=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "5e4fbfb6b3de1aa2872b76d49fafc942626e2add",
"rev": "4aa36568d413aca0ea84a1684d2d46f55dbabad7",
"type": "github"
},
"original": {
@ -745,11 +746,11 @@
"nixpkgs": "nixpkgs_6"
},
"locked": {
"lastModified": 1732040857,
"narHash": "sha256-nwbtI77CGa6AclGOmNXKLZFboxeAJWqX0IVgT2Ezo1Y=",
"lastModified": 1732112358,
"narHash": "sha256-2mrUledH5Fl5z34Z7POLBfHFu/E9LPJMXCGGzYigiy4=",
"owner": "nix-community",
"repo": "nixpkgs-wayland",
"rev": "1e388cad31a52c4dc25613484b3591298b105935",
"rev": "15836268eff507e4e8b453cd57ea5b0e6e07f0da",
"type": "github"
},
"original": {
@ -901,11 +902,11 @@
"nixpkgs-stable": "nixpkgs-stable"
},
"locked": {
"lastModified": 1731363552,
"narHash": "sha256-vFta1uHnD29VUY4HJOO/D6p6rxyObnf+InnSMT4jlMU=",
"lastModified": 1730814269,
"narHash": "sha256-fWPHyhYE6xvMI1eGY3pwBTq85wcy1YXqdzTZF+06nOg=",
"owner": "cachix",
"repo": "git-hooks.nix",
"rev": "cd1af27aa85026ac759d5d3fccf650abe7e1bbf0",
"rev": "d70155fdc00df4628446352fc58adc640cd705c2",
"type": "github"
},
"original": {
@ -1121,11 +1122,11 @@
]
},
"locked": {
"lastModified": 1731703417,
"narHash": "sha256-rheDc/7C+yI+QspYr9J2z9kQ5P9F4ATapI7qyFAe1XA=",
"lastModified": 1730743262,
"narHash": "sha256-iTLqj3lU8kFehPm5tXpctzkD274t/k1nwSSq3qCWXeg=",
"owner": "hyprwm",
"repo": "xdg-desktop-portal-hyprland",
"rev": "8070f36deec723de71e7557441acb17e478204d3",
"rev": "09b23cef06fe248e61cec8862c04b9bcb62f4b6d",
"type": "github"
},
"original": {

View file

@ -39,7 +39,7 @@
inputs.nixpkgs.follows = "nixpkgs";
};
hyprland.url = "git+https://github.com/hyprwm/Hyprland/?submodules=1";
hyprland.url = "git+https://github.com/hyprwm/Hyprland/?submodules=1&ref=refs/tags/v0.45.0";
hyprland-contrib.url = "github:hyprwm/contrib";
f1multiviewer.url = "github:daylinmorgan/f1multiviewer-flake";

View file

@ -81,10 +81,10 @@ hwylCli:
trigger GHA
examples:
[b]oizys gha update[/] --input:hosts:othalan,algiz,mannaz
[b]oizys gha update[/] --inputs:hosts:othalan,algiz,mannaz
"""
flags:
input:
inputs:
T seq[KVString]
? "inputs for dispatch"
`ref`:
@ -96,7 +96,7 @@ hwylCli:
# i.e. @flake.lock means read a file a flake.lock and use it's contents
if args.len == 0: fatalQuit "expected workflow file name"
let inputs =
input.mapIt((it.key, it.val)).toTable()
inputs.mapIt((it.key, it.val)).toTable()
createDispatch(args[0], `ref`, inputs)
[dry]

View file

@ -6,6 +6,7 @@
## software
- [ ] hyprland > v0.45.0 is causing chrome to not tile by default
- [ ] why is my update ci always building llm and rofi?
- [ ] include langservers for enabled languages?
<!--[tracking issue](https://github.com/wez/wezterm/issues/5990)-->