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,
|
|
|
|
...
|
2024-03-19 00:04:33 +01:00
|
|
|
} @ inputs: {
|
|
|
|
# TODO steal this from raf when I have time and energy
|
|
|
|
#lib = import (self + /lib) { inherit inputs; };
|
2024-03-19 00:08:02 +01:00
|
|
|
inherit (nixpkgs) lib;
|
2024-03-19 00:04:33 +01:00
|
|
|
|
2024-03-19 00:08:02 +01:00
|
|
|
nixosConfigurations = import ./hosts { inherit inputs; };
|
2023-07-13 12:49:20 +02:00
|
|
|
};
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
2023-07-06 20:03:25 +02:00
|
|
|
|
2024-06-07 12:55:10 +02:00
|
|
|
hyprland = {
|
|
|
|
type = "git";
|
|
|
|
url = "https://github.com/hyprwm/Hyprland";
|
|
|
|
submodules = true;
|
|
|
|
};
|
2023-08-13 09:41:58 +02:00
|
|
|
|
2024-03-20 07:47:51 +01:00
|
|
|
hyprlock = {
|
|
|
|
url = "github:hyprwm/hyprlock";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-03-19 23:45:26 +01:00
|
|
|
|
2024-06-09 16:02:18 +02:00
|
|
|
hypridle = {
|
|
|
|
url = "github:hyprwm/hypridle";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
2023-09-08 16:10:15 +02:00
|
|
|
hyprcontrib.url = "github:hyprwm/contrib";
|
2023-08-16 18:39:54 +02:00
|
|
|
|
|
|
|
hyprland-plugins = {
|
|
|
|
url = "github:hyprwm/hyprland-plugins";
|
|
|
|
inputs.hyprland.follows = "hyprland";
|
2023-07-20 18:37:28 +02:00
|
|
|
};
|
2023-08-13 09:41:58 +02:00
|
|
|
|
2023-08-16 18:39:54 +02:00
|
|
|
split-monitor-workspaces = {
|
2024-04-09 01:50:28 +02:00
|
|
|
url = "github:Duckonaut/split-monitor-workspaces";
|
2023-08-16 18:39:54 +02:00
|
|
|
inputs.hyprland.follows = "hyprland";
|
|
|
|
};
|
2023-08-13 09:41:58 +02:00
|
|
|
|
2024-06-03 21:03:35 +02:00
|
|
|
iio-hyprland.url = "github:JeanSchoeller/iio-hyprland";
|
2024-05-23 21:33:46 +02:00
|
|
|
|
2023-07-20 18:37:28 +02:00
|
|
|
shadower.url = "github:n3oney/shadower";
|
2023-07-06 21:07:54 +02:00
|
|
|
|
2024-05-28 01:14:52 +02:00
|
|
|
woomer = {
|
|
|
|
url = "github:coffeeispower/woomer";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-05-27 21:33:02 +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-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 = {
|
2024-03-06 14:36:09 +01:00
|
|
|
url = "github:nixpak/nixpak";
|
2023-07-30 01:12:40 +02:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2023-08-02 15:45:31 +02:00
|
|
|
|
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
|
|
|
|
2023-08-13 09:41:19 +02:00
|
|
|
helix.url = "github:helix-editor/helix";
|
2023-09-08 16:10:15 +02:00
|
|
|
|
2023-09-13 16:52:19 +02:00
|
|
|
agenix.url = "github:ryantm/agenix";
|
2023-10-03 19:22:24 +02:00
|
|
|
|
|
|
|
nh = {
|
|
|
|
url = "github:viperML/nh";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2023-10-14 19:19:16 +02:00
|
|
|
|
|
|
|
schizofox = {
|
|
|
|
url = "github:schizofox/schizofox";
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.follows = "nixpkgs";
|
|
|
|
nixpak.follows = "nixpak";
|
|
|
|
};
|
|
|
|
};
|
2023-11-25 17:12:09 +01:00
|
|
|
|
2024-04-26 22:18:40 +02:00
|
|
|
nvf = {
|
2024-07-14 20:30:43 +02:00
|
|
|
url = "github:NotAShelf/nvf";
|
2023-11-25 17:12:09 +01:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-01-20 01:23:14 +01:00
|
|
|
|
2024-01-20 12:55:14 +01:00
|
|
|
waybar.url = "github:Alexays/Waybar";
|
2024-03-08 15:12:45 +01:00
|
|
|
|
2024-04-13 21:55:10 +02:00
|
|
|
quickshell = {
|
|
|
|
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-05-22 12:10:48 +02:00
|
|
|
|
|
|
|
pozsite = {
|
|
|
|
url = "git+ssh://jacekpoz/jacekpoz/pozsite.git";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-07-28 01:14:06 +02:00
|
|
|
|
|
|
|
nix-minecraft.url = "github:Infinidoge/nix-minecraft";
|
2024-08-28 22:21:15 +02:00
|
|
|
|
|
|
|
work-secrets.url = "git+ssh://jacekpoz/work/work-secrets";
|
2024-09-13 20:18:47 +02:00
|
|
|
|
|
|
|
nix-webring = {
|
|
|
|
url = "git+https://git.jacekpoz.pl/jacekpoz/nixwebr.ing";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2023-07-06 20:03:25 +02:00
|
|
|
};
|
|
|
|
}
|