niksos/flake.nix

104 lines
2.7 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-05-05 18:09:08 +02:00
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
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
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";
};
shadower.url = "github:n3oney/shadower";
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";
};
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";
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 = {
url = "github:NotAShelf/nvf/plugin/neotree";
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
impurity.url = "github:outfoxxed/impurity.nix";
2024-04-13 21:55:10 +02:00
quickshell = {
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-07-06 20:03:25 +02:00
};
}