nichts/flake.nix

52 lines
1.5 KiB
Nix
Raw Normal View History

2024-04-09 23:11:33 +02:00
{
2024-04-10 17:39:26 +02:00
description = "lololo";
outputs = inputs @ { self, nixpkgs, ... }:
{
inherit (nixpkgs) lib;
nixosConfigurations = import ./hosts { inherit inputs; };
};
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2024-05-05 20:28:17 +02:00
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
2024-05-05 14:01:33 +02:00
hyprland-plugins = {
url = "github:hyprwm/hyprland-plugins";
inputs.hyprland.follows = "hyprland";
};
2024-05-05 22:12:18 +02:00
doomemacs = {
url = "github:doomemacs/doomemacs";
flake = false;
};
2024-05-05 21:33:33 +02:00
nixpkgs-wayland.url = "github:nix-community/nixpkgs-wayland";
2024-05-05 14:01:33 +02:00
split-monitor-workspaces = {
url = "github:Duckonaut/split-monitor-workspaces";
inputs.hyprland.follows = "hyprland";
};
anyrun = {
url = "github:Kirottu/anyrun";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-05-04 01:33:33 +02:00
stylix.url = "github:danth/stylix";
2024-04-10 17:39:26 +02:00
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
2024-04-10 11:35:09 +02:00
};
2024-04-09 23:11:33 +02:00
nur = {
url = "github:nix-community/NUR";
2024-04-12 20:24:19 +02:00
#inputs.nixpkgs.follows = "nixpkgs";
};
2024-04-09 23:11:33 +02:00
2024-04-10 17:39:26 +02:00
agenix.url = "github:ryantm/agenix";
2024-04-09 23:11:33 +02:00
2024-04-13 20:51:58 +02:00
neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
2024-05-05 21:33:33 +02:00
waybar.url = "github:Alexays/Waybar";
2024-04-10 19:42:28 +02:00
fenix = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-04-10 17:39:26 +02:00
};
2024-04-09 23:11:33 +02:00
}