mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
48 lines
1.6 KiB
Nix
48 lines
1.6 KiB
Nix
{
|
|
description = "nix begat oizys";
|
|
|
|
outputs = inputs: (import ./lib inputs).oizysFlake;
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
|
stable.url = "github:nixos/nixpkgs/nixos-23.11";
|
|
|
|
tsm.url = "github:daylinmorgan/tsm?dir=nix";
|
|
tsm.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
# hyprland.url = "github:hyprwm/Hyprland/main";
|
|
# https://github.com/hyprwm/Hyprland/issues/5891
|
|
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
|
|
hyprland-contrib.url = "github:hyprwm/contrib";
|
|
nixpkgs-wayland.url = "github:nix-community/nixpkgs-wayland";
|
|
|
|
pinix.url = "github:remi-dupre/pinix";
|
|
pinix.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
nix-index-database.url = "github:nix-community/nix-index-database";
|
|
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
zig2nix.url = "github:Cloudef/zig2nix";
|
|
zig2nix.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
zls.url = "github:zigtools/zls";
|
|
zls.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
f1multiviewer.url = "github:daylinmorgan/f1multiviewer-flake";
|
|
};
|
|
|
|
nixConfig = {
|
|
extra-substituters = [
|
|
"https://hyprland.cachix.org"
|
|
"https://nixpkgs-wayland.cachix.org"
|
|
"https://daylin.cachix.org"
|
|
# "https://cache.garnix.io"
|
|
];
|
|
extra-trusted-public-keys = [
|
|
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
|
|
"nixpkgs-wayland.cachix.org-1:3lwxaILxMRkVhehr5StQprHdEo4IrE8sRho9R9HOLYA="
|
|
"daylin.cachix.org-1:fLdSnbhKjtOVea6H9KqXeir+PyhO+sDSPhEW66ClE/k="
|
|
# "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
|
|
];
|
|
};
|
|
}
|