forked from end-4/CirnOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
executable file
·60 lines (56 loc) · 1.74 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
{
description = "raz'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";
swww.url = "github:LGFae/swww";
zen-browser.url = "github:MarceColl/zen-browser-flake";
nixarr.url = "github:rasmus-kirk/nixarr";
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
hyprland-plugins = {
url = "github:hyprwm/hyprland-plugins";
# inputs.nixpkgs.follows = "hyprland";
};
spicetify-nix = {
url = "github:Gerg-L/spicetify-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
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";
};
};
}