1
0
Fork 0
mirror of https://github.com/ryanccn/flake.git synced 2026-01-27 04:06:28 +01:00

feat: manage fonts with hm

This commit is contained in:
Ryan Cao 2023-09-03 21:53:28 +08:00
parent 44f9e25048
commit 621b09bd8f
Signed by: ryanccn
SSH key fingerprint: SHA256:NtP/BlVhoQq4xU6BEcZeT8nIPvHntkJ3lIc2yB+F09E
4 changed files with 47 additions and 36 deletions

View file

@ -39,9 +39,6 @@
nyoom = {
url = "https://flakehub.com/f/ryanccn/nyoom/0.*.tar.gz";
inputs.nixpkgs.follows = "nixpkgs";
inputs.crane.follows = "crane";
inputs.rust-overlay.follows = "rust-overlay";
inputs.flake-utils.follows = "flake-utils";
};
rust-overlay = {
@ -73,6 +70,7 @@
};
outputs = {
self,
nix-darwin,
home-manager,
darwin-custom-icons,
@ -87,5 +85,16 @@
specialArgs = {inherit inputs;};
};
checks = {
aarch64-darwin =
builtins.mapAttrs (
_: v:
builtins.seq
v.config.system.build.toplevel
v.pkgs.emptyFile
)
self.darwinConfigurations;
};
};
}