oizys/flake.nix

51 lines
1.5 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-02-29 20:12:35 -06:00
outputs = inputs @ {self, ...}:
2024-02-21 14:36:33 -06:00
(import ./lib {
2024-02-29 15:41:05 -06:00
inherit inputs;
inherit self;
2024-02-21 14:36:33 -06:00
})
.oizysFlake {};
2024-02-29 15:41:05 -06:00
inputs = {
2024-03-13 10:32:53 -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
hyprland.url = "github:hyprwm/Hyprland/main";
hyprland.inputs.nixpkgs.follows = "nixpkgs";
hyprland-contrib.url = "github:hyprwm/contrib";
hyprland-contrib.inputs.nixpkgs.follows = "nixpkgs";
nixpkgs-wayland = {
url = "github:nix-community/nixpkgs-wayland";
inputs.nixpkgs.follows = "nixpkgs";
inputs.nix-eval-jobs.follows = "nix-eval-jobs";
};
nix-eval-jobs.url = "github:nix-community/nix-eval-jobs";
nix-eval-jobs.inputs.nixpkgs.follows = "nixpkgs";
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";
};
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="
];
};
2024-01-23 11:51:13 -06:00
}