-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
88 lines (73 loc) · 2.31 KB
/
flake.nix
File metadata and controls
88 lines (73 loc) · 2.31 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
81
82
83
84
85
86
87
88
{
description = "uh coding4hours nix config i guess";
nixConfig = {
extra-substituters = [
"https://hyprland.cachix.org"
"https://quickshell.cachix.org"
"https://nix-community.cachix.org"
];
extra-trusted-public-keys = [
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
"quickshell.cachix.org-1:vBm3s5tZThc5KDLj6zhHVCMp8wX/AZJwle9wqdi81ts="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
inputs = {
flakelight.url = "github:nix-community/flakelight";
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
hyprnix.url = "github:hyprwm/hyprnix";
awww.url = "git+https://codeberg.org/LGFae/awww";
matugen.url = "github:InioX/Matugen?ref=refs/tags/v4.1.0";
devbox.url = "github:jetify-com/devbox";
concord.url = "github:chojs23/concord";
elephant = {
url = "github:abenz1267/elephant";
inputs.nixpkgs.follows = "nixpkgs";
};
walker = {
url = "github:abenz1267/walker";
inputs.elephant.follows = "elephant";
};
nixvim = {
url = "github:nix-community/nixvim/nixos-25.11";
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager/release-25.11";
inputs.nixpkgs.follows = "nixpkgs";
};
quickshell = {
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
schizofox.url = "github:schizofox/schizofox";
zen-browser = {
url = "github:0xc000022070/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
};
outputs = {flakelight, ...} @ inputs:
flakelight ./. {
inherit inputs;
systems = [
"aarch64-linux"
"i686-linux"
"x86_64-linux"
"aarch64-darwin"
"x86_64-darwin"
];
formatter = pkgs: pkgs.alejandra;
overlays = import ./overlays {inherit inputs;};
nixosConfigurations.nixbtw = {
modules = [
./nixos/configuration.nix
];
};
homeConfigurations."coding4hours@nixbtw" = {
system = "x86_64-linux";
modules = [./home-manager/home.nix];
};
};
}