2023-07-06 20:03:25 +02:00
|
|
|
{
|
2023-07-13 12:49:20 +02:00
|
|
|
description = "the poz";
|
2023-07-06 21:07:54 +02:00
|
|
|
|
2023-07-13 12:49:20 +02:00
|
|
|
outputs = {
|
|
|
|
self,
|
|
|
|
nixpkgs,
|
2023-07-22 00:14:37 +02:00
|
|
|
nur,
|
2023-07-30 01:10:38 +02:00
|
|
|
nixpak,
|
2023-07-13 12:49:20 +02:00
|
|
|
...
|
|
|
|
} @ inputs: let
|
|
|
|
inherit (nixpkgs) lib; # we isolate lib from nixpkgs to be able to pass it to specific flake options, alternatively use nixpkgs.lib
|
|
|
|
in {
|
|
|
|
# instead of cluttering flake.nix, import all nixosConfigurations from their own dedicated file
|
2023-07-22 00:14:37 +02:00
|
|
|
nixosConfigurations = import ./hosts {inherit nixpkgs inputs lib nur;};
|
2023-07-13 12:49:20 +02:00
|
|
|
};
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
2023-07-06 20:03:25 +02:00
|
|
|
|
2023-07-13 12:49:20 +02:00
|
|
|
hyprland.url = "github:hyprwm/Hyprland";
|
2023-07-20 18:37:28 +02:00
|
|
|
hyprcontrib = {
|
|
|
|
url = "github:hyprwm/contrib";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2023-07-13 12:49:20 +02:00
|
|
|
hyprland-plugins.url = "github:hyprwm/hyprland-plugins";
|
2023-07-20 13:15:20 +02:00
|
|
|
split-monitor-workspaces.url = "github:jacekpoz/split-monitor-workspaces";
|
2023-07-20 18:37:28 +02:00
|
|
|
shadower.url = "github:n3oney/shadower";
|
2023-07-06 21:07:54 +02:00
|
|
|
|
2023-07-13 12:49:20 +02:00
|
|
|
home-manager = {
|
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2023-07-17 20:03:22 +02:00
|
|
|
|
|
|
|
conduit.url = "gitlab:famedly/conduit/next";
|
2023-07-20 23:48:46 +02:00
|
|
|
|
2023-08-11 21:02:14 +02:00
|
|
|
nix-gaming = {
|
|
|
|
url = "github:fufexan/nix-gaming";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2023-07-22 00:14:37 +02:00
|
|
|
|
|
|
|
nur.url = "github:nix-community/NUR";
|
2023-07-30 01:11:49 +02:00
|
|
|
|
|
|
|
fenix = {
|
|
|
|
url = "github:nix-community/fenix";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2023-07-30 01:12:40 +02:00
|
|
|
|
|
|
|
nixpak = {
|
|
|
|
url = "github:max-privatevoid/nixpak";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2023-08-02 15:45:31 +02:00
|
|
|
|
|
|
|
firefox-nightly = {
|
|
|
|
url = "github:colemickens/flake-firefox-nightly";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
|
|
|
nixpkgs-wayland.url = "github:nix-community/nixpkgs-wayland";
|
2023-08-03 18:34:37 +02:00
|
|
|
|
|
|
|
anyrun = {
|
|
|
|
url = "github:Kirottu/anyrun";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2023-08-06 23:03:06 +02:00
|
|
|
|
|
|
|
neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
|
2023-07-06 20:03:25 +02:00
|
|
|
};
|
|
|
|
}
|