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

refactor: overlays/default.nix

This commit is contained in:
Ryan Cao 2023-09-04 23:05:43 +08:00
parent 0bef7e8133
commit 43feb86859
Signed by: ryanccn
SSH key fingerprint: SHA256:NtP/BlVhoQq4xU6BEcZeT8nIPvHntkJ3lIc2yB+F09E
2 changed files with 9 additions and 3 deletions

View file

@ -2,7 +2,9 @@
pkgs,
inputs,
...
}: {
}: let
flakeOverlays = import ../overlays;
in {
services.nix-daemon.enable = true;
nix.package = pkgs.nix;
@ -26,8 +28,8 @@
inputs.attic.overlays.default
inputs.discord-applemusic-rich-presence.overlays.default
inputs.nyoom.overlays.default
(import ../overlays/ryan-mono-bin.nix)
(import ../overlays/ibm-plex.nix)
flakeOverlays.ryan-mono-bin
flakeOverlays.ibm-plex
];
config.allowUnfree = true;

4
overlays/default.nix Normal file
View file

@ -0,0 +1,4 @@
{
ibm-plex = import ./ibm-plex.nix;
ryan-mono-bin = import ./ryan-mono-bin.nix;
}