-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
51 lines (44 loc) · 1.56 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
inputs = {
# nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
# TODO nixos-usntable
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
unstable.url = "github:numtide/nixpkgs-unfree/nixos-unstable";
# chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
blueprint = {
url = "github:numtide/blueprint";
inputs.nixpkgs.follows = "nixpkgs";
};
# Modules
agenix.url = "https://flakehub.com/f/ryantm/agenix/0.15.tar.gz";
nixos-hardware.url = "github:NixOS/nixos-hardware";
disko.url = "https://flakehub.com/f/nix-community/disko/1.tar.gz";
# Packages
nix.url = "https://flakehub.com/f/NixOS/nix/2.tar.gz";
hyprland.url = "github:hyprwm/hyprland";
betterfox.url = "github:HeitorAugustoLN/betterfox-nix";
iwmenu.url = "github:e-tho/iwmenu";
# helix.url = "github:helix-editor/helix";
hyprland-contrib.url = "github:hyprwm/contrib";
openconnect-sso.url = "github:ThinkChaos/openconnect-sso/fix/nix-flake";
roc.url = "github:roc-lang/roc";
nix-index-database.url = "github:Mic92/nix-index-database";
nix-dram.url = "github:dramforever/nix-dram";
mcp-nixos.url = "github:utensils/mcp-nixos";
marble.url = "git+ssh://git@github.com/marble-shell/shell.git";
morewaita = {
url = "github:somepaulo/MoreWaita";
flake = false;
};
};
outputs =
inputs:
inputs.blueprint {
inherit inputs;
systems = [ "x86_64-linux" ];
};
}