-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
80 lines (75 loc) · 2.3 KB
/
flake.nix
File metadata and controls
80 lines (75 loc) · 2.3 KB
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
{
description = "Hopefully this won't go as chaotically";
# Add all your dependencies here
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
blueprint.url = "github:numtide/blueprint";
blueprint.inputs.nixpkgs.follows = "nixpkgs";
home-manager.url = "github:nix-community/home-manager/";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
nixos-hardware = {
url = "github:nixos/nixos-hardware/master";
};
agenix.url = "github:ryantm/agenix";
lollypops = {
url = "github:pinpox/lollypops";
inputs.nixpkgs.follows = "nixpkgs";
};
agenix-rekey = {
url = "github:oddlama/agenix-rekey";
inputs.nixpkgs.follows = "nixpkgs";
};
# microvm.url = "github:astro/microvm.nix";
# microvm.inputs.nixpkgs.follows = "nixpkgs";
# niri = {
# url = "github:sodiboo/niri-flake";
# inputs.nixpkgs.follows = "nixpkgs";
# inputs.nixpkgs-stable.follows = "";
# };
stylix = {
url = "github:nix-community/stylix/";
inputs.nixpkgs.follows = "nixpkgs";
# inputs.home-manager.follows = "home-manager";
};
firefox-addons = {
url = "sourcehut:~rycee/nur-expressions?dir=pkgs/firefox-addons";
inputs.nixpkgs.follows = "nixpkgs";
};
xremap-flake.url = "github:xremap/nix-flake";
spicetify-nix.url = "github:Gerg-L/spicetify-nix";
catppuccin.url = "github:catppuccin/nix/";
nixcord = {
url = "github:kaylorben/nixcord";
};
mahoosivelyGay = {
url = "github:Sebagabones/reallymahoosivelygay";
};
spotifyBackend = {
url = "github:Sebagabones/mySpotifyBackend";
};
plasma-manager = {
url = "github:nix-community/plasma-manager";
};
};
outputs =
inputs:
inputs.blueprint {
inherit inputs;
systems = [ "x86_64-linux" ];
nixpkgs.config.allowUnfree = true;
}
// {
agenix-rekey = inputs.agenix-rekey.configure {
userFlake = inputs.self;
inherit (inputs.self) nixosConfigurations;
};
# Lollypops
packages."x86_64-linux".lollypops = inputs.lollypops.packages."x86_64-linux".default.override {
configFlake = inputs.self;
};
};
}