mirror of
https://github.com/ryanccn/flake.git
synced 2025-12-06 16:10:45 +01:00
refactor: overlays/default.nix
This commit is contained in:
parent
0bef7e8133
commit
43feb86859
2 changed files with 9 additions and 3 deletions
|
|
@ -2,7 +2,9 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
inputs,
|
inputs,
|
||||||
...
|
...
|
||||||
}: {
|
}: let
|
||||||
|
flakeOverlays = import ../overlays;
|
||||||
|
in {
|
||||||
services.nix-daemon.enable = true;
|
services.nix-daemon.enable = true;
|
||||||
nix.package = pkgs.nix;
|
nix.package = pkgs.nix;
|
||||||
|
|
||||||
|
|
@ -26,8 +28,8 @@
|
||||||
inputs.attic.overlays.default
|
inputs.attic.overlays.default
|
||||||
inputs.discord-applemusic-rich-presence.overlays.default
|
inputs.discord-applemusic-rich-presence.overlays.default
|
||||||
inputs.nyoom.overlays.default
|
inputs.nyoom.overlays.default
|
||||||
(import ../overlays/ryan-mono-bin.nix)
|
flakeOverlays.ryan-mono-bin
|
||||||
(import ../overlays/ibm-plex.nix)
|
flakeOverlays.ibm-plex
|
||||||
];
|
];
|
||||||
|
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
|
|
|
||||||
4
overlays/default.nix
Normal file
4
overlays/default.nix
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
ibm-plex = import ./ibm-plex.nix;
|
||||||
|
ryan-mono-bin = import ./ryan-mono-bin.nix;
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue