-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
executable file
·60 lines (43 loc) · 1.34 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 = "My modular NixOS configuration that totally did not take countless horus to make.";
outputs = {self, ...} @ inputs: {
nixosConfigurations =
import ./hosts
{
inherit inputs self;
};
packages."x86_64-linux".doc = import ./doc {
inherit inputs self;
};
};
# Imagine having no clean way to separate your system's dependencies...
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
};
impermanence.url = "github:nix-community/impermanence";
disko.url = "github:nix-community/disko";
agenix.url = "github:ryantm/agenix";
schizofox = {
url = "github:schizofox/schizofox";
};
eww-config = {
url = "github:Vagahbond/eww-dotfiles";
flake = false;
};
hyprpaper.url = "github:hyprwm/hyprpaper";
spicetify-nix = {
url = "github:gerg-l/spicetify-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
neovim-flake = {
url = "/home/vagahbond/Projects/nvf";
};
anyrun.url = "github:anyrun-org/anyrun";
nix-cooker.url = "github:vagahbond/nix-cooker";
ags.url = "github:Aylur/ags";
# universe.url = "/home/vagahbond/Projects/uni-verse-production/";
universe.url = "github:uni-verse-fm/uni-verse-production";
};
}