-
Notifications
You must be signed in to change notification settings - Fork 10
/
flake.nix
executable file
·52 lines (49 loc) · 1.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
{
description = "end_4's NixOS flake";
outputs = { self, impurity, ... }: {
# editing flake.nix triggers certain utilities such as direnv
# to reload - editing host configurations do not require a direnv
# reload, so lets move hosts out of the way
nixosConfigurations = import ./hosts { inherit self; };
};
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
impurity.url = "github:outfoxxed/impurity.nix";
thorium.url = "github:end-4/nix-thorium";
hyprland.url = "github:hyprwm/Hyprland";
hyprland-plugins = {
url = "github:hyprwm/hyprland-plugins";
# inputs.nixpkgs.follows = "hyprland";
};
ags.url = "github:Aylur/ags";
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
gross = {
url = "github:fufexan/gross";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
};
matugen = {
url = "github:/InioX/Matugen";
# ref = "refs/tags/matugen-v0.10.0"
};
more-waita = {
url = "github:somepaulo/MoreWaita";
flake = false;
};
firefox-gnome-theme = {
url = "github:rafaelmardojai/firefox-gnome-theme";
flake = false;
};
anyrun = {
url = "github:Kirottu/anyrun";
inputs.nixpkgs.follows = "nixpkgs";
};
};
}