-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
85 lines (69 loc) · 2.47 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
description = "My NixOS Configuration";
inputs = {
# essentials
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-24.11";
home-manager = {
url = "github:nix-community/home-manager?ref=release-24.11";
inputs.nixpkgs.follows = "nixpkgs";
};
stylix.url = "github:danth/stylix";
nix-index-database = {
url = "github:nix-community/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
};
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
nvix.url = "github:anders130/nvix";
nix-minecraft.url = "github:Infinidoge/nix-minecraft";
nixcord.url = "github:kaylorben/nixcord";
lumehub.url = "git+https://github.com/LumeHub/LumeHub.Server?branch=dev&submodules=1";
nix-xilinx = {
url = "gitlab:doronbehar/nix-xilinx";
inputs.nixpkgs.follows = "nixpkgs";
};
zen-browser.url = "github:0xc000022070/zen-browser-flake";
nur.url = "github:nix-community/NUR";
# gui
ags.url = "github:Aylur/ags/v1";
hyprland = {
type = "git";
url = "https://github.com/hyprwm/Hyprland";
ref = "refs/tags/v0.45.2";
submodules = true;
};
split-monitor-workspaces = {
type = "git";
url = "https://github.com/Duckonaut/split-monitor-workspaces";
rev = "4aee4a6d67f8714fedd33acc7c9e64befba9b5cb";
inputs.hyprland.follows = "hyprland";
};
# host specific
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
nixos-wsl = {
url = "github:nix-community/NixOS-WSL";
inputs.nixpkgs.follows = "nixpkgs";
};
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
raspberry-pi-nix.url = "github:nix-community/raspberry-pi-nix";
lanzaboote.url = "github:nix-community/lanzaboote";
};
outputs = inputs: {
nixosConfigurations = import ./hosts inputs;
overlays = import ./overlays inputs;
templates = import ./templates;
};
nixConfig = {
extra-substituters = [
"https://anders130.cachix.org"
];
extra-trusted-public-keys = [
"anders130.cachix.org-1:mCAq0L6Ld3lG7gxJVHGzKr2rqUZ5qs5YoERxoSjMOXs="
];
};
}