105 lines
2.7 KiB
Nix
105 lines
2.7 KiB
Nix
{
|
|
description = "the poz";
|
|
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
...
|
|
} @ inputs: {
|
|
# TODO steal this from raf when I have time and energy
|
|
#lib = import (self + /lib) { inherit inputs; };
|
|
inherit (nixpkgs) lib;
|
|
|
|
nixosConfigurations = import ./hosts { inherit inputs; };
|
|
};
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
hyprland.url = "github:hyprwm/Hyprland";
|
|
|
|
hyprlock = {
|
|
url = "github:hyprwm/hyprlock";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
hyprcontrib.url = "github:hyprwm/contrib";
|
|
|
|
hyprland-plugins = {
|
|
url = "github:hyprwm/hyprland-plugins";
|
|
inputs.hyprland.follows = "hyprland";
|
|
};
|
|
|
|
split-monitor-workspaces = {
|
|
url = "github:bivsk/split-monitor-workspaces/bivsk";
|
|
inputs.hyprland.follows = "hyprland";
|
|
};
|
|
|
|
shadower.url = "github:n3oney/shadower";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
conduit.url = "gitlab:famedly/conduit/next";
|
|
|
|
nix-gaming = {
|
|
url = "github:NotAShelf/nix-gaming";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
nur.url = "github:nix-community/NUR";
|
|
|
|
fenix = {
|
|
url = "github:nix-community/fenix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
nixpak = {
|
|
url = "github:nixpak/nixpak";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
firefox-nightly = {
|
|
url = "github:colemickens/flake-firefox-nightly";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
nixpkgs-wayland.url = "github:nix-community/nixpkgs-wayland";
|
|
|
|
anyrun = {
|
|
url = "github:Kirottu/anyrun";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
|
|
|
|
helix.url = "github:helix-editor/helix";
|
|
|
|
agenix.url = "github:ryantm/agenix";
|
|
|
|
nh = {
|
|
url = "github:viperML/nh";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
schizofox = {
|
|
url = "github:schizofox/schizofox";
|
|
inputs = {
|
|
nixpkgs.follows = "nixpkgs";
|
|
nixpak.follows = "nixpak";
|
|
};
|
|
};
|
|
|
|
nixvim = {
|
|
url = "github:nix-community/nixvim";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
ags.url = "github:Aylur/ags";
|
|
|
|
waybar.url = "github:Alexays/Waybar";
|
|
|
|
impurity.url = "github:outfoxxed/impurity.nix";
|
|
};
|
|
}
|