mochi/nixos/overlays/default.nix
Joseph Hanson 1557ea2833
All checks were successful
Build / nix-build (native-aarch64, varda) (pull_request) Successful in 7m13s
Build / nix-build (native-x86_64, legiondary) (pull_request) Successful in 16m43s
Add termius icon correctly for gnome and update dash icon defaults.
2024-07-02 20:22:36 -05:00

22 lines
565 B
Nix

{ inputs, ... }:
let
warpTerminal = import ./warp-terminal {
inherit (inputs.nixpkgs) lib;
};
termiusApp = import ./termius { };
in
{
nur = inputs.nur.overlay;
warp-terminal = warpTerminal;
termius = termiusApp;
# The unstable nixpkgs set (declared in the flake inputs) will
# be accessible through 'pkgs.unstable'
# great idea if I wasn't using unstable as my base.
# unstable-packages = final: _prev: {
# unstable = import inputs.nixpkgs-unstable {
# inherit (final) system;
# config.allowUnfree = true;
# };
# };
}