1
0
Fork 0
mirror of https://github.com/ryanccn/flake.git synced 2025-12-06 08:10:43 +01:00

feat: reorganize, update

This commit is contained in:
Ryan Cao 2024-12-02 09:48:30 +08:00
parent eb6b664802
commit 872c6be493
Signed by: ryanccn
GPG key ID: 48C96B2057D71CB1
10 changed files with 140 additions and 139 deletions

View file

@ -1,4 +1,11 @@
{ pkgs, inputs', ... }:
{
pkgs,
inputs',
...
}:
let
defaultPackage = name: inputs'.${name}.packages.default;
in
{
environment.systemPackages = with pkgs; [
nixfmt-rfc-style
@ -25,8 +32,8 @@
dprint
# google-cloud-sdk
railway
cloudflared
# railway
# cloudflared
# flyctl
# btop
@ -49,14 +56,14 @@
xh
typst
packwiz
# spicetify-cli
exiftool
# packwiz
# spicetify-cli
inputs'.nrr.packages.default
inputs'.am.packages.default
inputs'.nyoom.packages.default
inputs'.morlana.packages.default
inputs'.spdx-gen.packages.default
(defaultPackage "nrr")
(defaultPackage "am")
(defaultPackage "nyoom")
(defaultPackage "morlana")
(defaultPackage "spdx-gen")
];
}