Joseph Hanson
3a1eb9d320
Some checks failed
Build / nix-build (native-aarch64, varda) (push) Successful in 2m31s
Build / nix-build (native-x86_64, gandalf) (push) Has been cancelled
Build / nix-build (native-x86_64, telchar) (push) Has been cancelled
Build / nix-build (native-x86_64, telperion) (push) Has been cancelled
Build / Nix Build Successful (push) Has been cancelled
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ inputs, ... }:
|
|
let
|
|
inherit (inputs.nixpkgs) lib;
|
|
termiusOverlay = import ./termius { };
|
|
# vivaldiOverlay = import ./vivaldi { };
|
|
|
|
vivaldiOverlay = self: super: {
|
|
vivaldi = super.callPackage ./vivaldi { };
|
|
};
|
|
|
|
talosctlOverlay = self: super: {
|
|
talosctl = super.callPackage ./talosctl/talosctl-custom.nix { };
|
|
};
|
|
|
|
# Wasteland of old overlays
|
|
# warpTerminalOverlay = import ./warp-terminal {};
|
|
# goOverlay = import ./go { };
|
|
# zedEditorOverlay = import ./zed-editor { };
|
|
in
|
|
{
|
|
nur = inputs.nur.overlay;
|
|
vivaldi = vivaldiOverlay;
|
|
# termius = termiusOverlay;
|
|
# talosctl = talosctlOverlay;
|
|
|
|
# Wasteland of old overlays
|
|
# warp-terminal = warpTerminalOverlay;
|
|
# go = goOverlay;
|
|
# zed-editor = zedEditorOverlay;
|
|
|
|
# The unstable nixpkgs set (declared in the flake inputs) will
|
|
# be accessible through 'pkgs.unstable'
|
|
unstable-packages = final: _prev: {
|
|
unstable = import inputs.nixpkgs-unstable {
|
|
inherit (final) system;
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
|
|
# VSCode Community Packages
|
|
comm-packages = inputs.nix-vscode-extensions.overlays.default;
|
|
}
|