oizys/flake.nix

55 lines
1.9 KiB
Nix
Raw Normal View History

2024-01-23 11:51:13 -06:00
{
2024-01-28 11:00:05 -06:00
description = "nix begat oizys";
2024-03-21 11:06:07 -05:00
2024-03-27 11:55:06 -05:00
outputs = inputs: (import ./lib inputs).oizysFlake;
2024-02-29 15:41:05 -06:00
inputs = {
2024-05-06 14:15:05 -05:00
lix.url = "git+https://git@git.lix.systems/lix-project/lix?ref=refs/tags/2.90-beta.1";
lix.flake = false;
lix-module.url = "git+https://git.lix.systems/lix-project/nixos-module";
lix-module.inputs.lix.follows = "lix";
2024-05-14 14:18:07 -05:00
# lix-module.inputs.nixpkgs.follows = "nixpkgs";
2024-05-06 14:15:05 -05:00
2024-04-28 09:06:15 -05:00
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
2024-03-12 09:12:26 -05:00
stable.url = "github:nixos/nixpkgs/nixos-23.11";
2024-02-29 15:41:05 -06:00
2024-03-18 17:20:18 -05:00
tsm.url = "github:daylinmorgan/tsm?dir=nix";
tsm.inputs.nixpkgs.follows = "nixpkgs";
2024-05-05 15:03:49 -05:00
# hyprland.url = "github:hyprwm/Hyprland/main";
# https://github.com/hyprwm/Hyprland/issues/5891
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
2024-02-29 15:41:05 -06:00
hyprland-contrib.url = "github:hyprwm/contrib";
2024-03-14 12:58:26 -05:00
nixpkgs-wayland.url = "github:nix-community/nixpkgs-wayland";
2024-02-29 15:41:05 -06:00
nix-index-database.url = "github:nix-community/nix-index-database";
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
2024-03-31 16:40:21 -05:00
zig2nix.url = "github:Cloudef/zig2nix";
2024-04-26 11:14:21 -05:00
zig2nix.inputs.nixpkgs.follows = "nixpkgs";
2024-04-05 12:18:44 -05:00
zls.url = "github:zigtools/zls";
zls.inputs.nixpkgs.follows = "nixpkgs";
2024-04-08 11:05:36 -05:00
f1multiviewer.url = "github:daylinmorgan/f1multiviewer-flake";
2024-02-29 15:41:05 -06:00
};
nixConfig = {
extra-substituters = [
"https://hyprland.cachix.org"
"https://nixpkgs-wayland.cachix.org"
"https://daylin.cachix.org"
2024-05-06 14:15:05 -05:00
"https://cache.lix.systems"
2024-04-28 09:12:56 -05:00
# "https://cache.garnix.io"
2024-02-29 15:41:05 -06:00
];
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="
2024-05-06 14:15:05 -05:00
"cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o="
2024-04-28 09:12:56 -05:00
# "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
2024-02-29 15:41:05 -06:00
];
};
2024-01-23 11:51:13 -06:00
}