oizys/flake.nix

63 lines
2.3 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-27 14:58:45 -05:00
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
stable.url = "github:nixos/nixpkgs/nixos-23.11";
2024-06-19 12:02:54 -05:00
nixpkgs-wayland.url = "github:nix-community/nixpkgs-wayland";
2024-05-28 16:16:50 -05:00
nixos-wsl.url = "github:nix-community/NixOS-WSL";
2024-08-06 11:58:11 -05:00
nix-index-database.url = "github:nix-community/nix-index-database";
2024-06-28 10:17:08 -05:00
2024-08-16 14:20:54 -05:00
lix = {
url = "https://git.lix.systems/lix-project/lix/archive/main.tar.gz";
flake = false;
};
2024-06-19 12:02:54 -05:00
lix-module = {
2024-06-28 10:17:08 -05:00
url = "https://git.lix.systems/lix-project/nixos-module/archive/main.tar.gz";
2024-06-20 11:14:45 -05:00
inputs.nixpkgs.follows = "nixpkgs";
2024-06-28 10:17:08 -05:00
inputs.lix.follows = "lix";
2024-06-19 12:02:54 -05:00
};
2024-03-18 17:20:18 -05:00
2024-08-01 15:47:23 -05:00
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-08-06 11:58:11 -05:00
roc.url = "github:roc-lang/roc";
2024-08-09 13:56:36 -05:00
zig-overlay.url = "github:mitchellh/zig-overlay";
2024-08-06 11:58:11 -05:00
zls.url = "github:zigtools/zls";
2024-08-28 11:08:58 -05:00
nim2nix.url = "github:daylinmorgan/nim2nix";
2024-08-06 11:58:11 -05:00
pixi.url = "github:daylinmorgan/pixi-flake";
f1multiviewer.url = "github:daylinmorgan/f1multiviewer-flake";
tsm.url = "github:daylinmorgan/tsm?dir=nix";
hyprman.url = "git+https://git.dayl.in/daylin/hyprman.git";
2024-08-16 14:20:54 -05:00
utils.url = "git+https://git.dayl.in/daylin/utils.git";
2024-08-06 11:58:11 -05:00
hyprman.inputs.nixpkgs.follows = "nixpkgs";
f1multiviewer.inputs.nixpkgs.follows = "nixpkgs";
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
pixi.inputs.nixpkgs.follows = "nixpkgs";
roc.inputs.nixpkgs.follows = "nixpkgs";
tsm.inputs.nixpkgs.follows = "nixpkgs";
2024-08-16 14:20:54 -05:00
utils.inputs.nixpkgs.follows = "nixpkgs";
2024-08-06 11:58:11 -05:00
zls.inputs.nixpkgs.follows = "nixpkgs";
2024-08-09 13:56:36 -05:00
zls.inputs.zig-overlay.follows = "zig-overlay";
zig-overlay.inputs.nixpkgs.follows = "nixpkgs";
2024-02-29 15:41:05 -06:00
};
nixConfig = {
extra-substituters = [
"https://hyprland.cachix.org"
"https://nixpkgs-wayland.cachix.org"
"https://daylin.cachix.org"
# "https://cache.lix.systems"
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="
# "cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o="
2024-02-29 15:41:05 -06:00
];
};
2024-01-23 11:51:13 -06:00
}