niksos/flake.nix

123 lines
3.1 KiB
Nix
Raw Normal View History

2023-07-06 20:03:25 +02:00
{
2023-07-13 12:49:20 +02:00
description = "the poz";
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;
};
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";
hyprland-plugins = {
url = "github:hyprwm/hyprland-plugins";
inputs.hyprland.follows = "hyprland";
};
split-monitor-workspaces = {
url = "github:Duckonaut/split-monitor-workspaces";
inputs.hyprland.follows = "hyprland";
};
iio-hyprland.url = "github:JeanSchoeller/iio-hyprland";
2024-05-23 21:33:46 +02:00
shadower.url = "github:n3oney/shadower";
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
nur.url = "github:nix-community/NUR";
2023-07-30 01:11:49 +02:00
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";
};
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";
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";
};
schizofox = {
url = "github:schizofox/schizofox";
inputs = {
nixpkgs.follows = "nixpkgs";
nixpak.follows = "nixpak";
};
};
2023-11-25 17:12:09 +01: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 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";
};
nix-minecraft.url = "github:Infinidoge/nix-minecraft";
2023-07-06 20:03:25 +02:00
};
}