7 lines
174 B
Nix
7 lines
174 B
Nix
|
|
# ./overlays/nixmate.nix
|
||
|
|
inputs: # We pass inputs here so the overlay can see the nixmate flake
|
||
|
|
|
||
|
|
final: prev: {
|
||
|
|
nixmate = inputs.nixmate.packages.${prev.system}.default;
|
||
|
|
}
|