-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
75 lines (57 loc) · 2.53 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
description = "BvngeeCord's NixOS system and home configurations";
outputs = { nixpkgs, ... }@inputs: {
nixosConfigurations = import ./profiles/nixosConfigs.nix { inherit nixpkgs inputs; };
homeConfigurations = import ./profiles/homeConfigs.nix { inherit nixpkgs inputs; };
};
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
# sometimes I want to update nnixpkgs-unstable without recompiling linux_xanmod and
# nvidia drivers. When I do feel like it, I can fast-forward this to nixpkgs-unstable
nixpkgs-kernel-packages.url = "github:nixos/nixpkgs/8a3354191c0d7144db9756a74755672387b702ba";
# because I have no will to report stupid bugs, and this seems to fix my multi-monitor bar
nixpkgs-ironbar.url = "github:nixos/nixpkgs/fc55cdb8340a3258a1ad6f3eb8df52dac36c3e70";
# nix-index, but with a prebuilt database (and convenient hm/nixos modules)
nix-index-database.url = "github:nix-community/nix-index-database";
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
home-manager = {
url = "github:nix-community/home-manager/release-24.05";
inputs.nixpkgs.follows = "nixpkgs";
};
# v0.36.0 does not include the following commit, and will be patched instead
# https://github.com/hyprwm/Hyprland/commit/8e2a62e53bf51e8b4ae719d0e46797b0a26eeb22
hyprland.url = "github:hyprwm/Hyprland/v0.36.0";
split-monitor-workspaces = {
url = "github:Duckonaut/split-monitor-workspaces";
inputs.hyprland.follows = "hyprland";
};
hy3 = {
url = "github:outfoxxed/hy3?ref=hl0.36.0";
inputs.hyprland.follows = "hyprland";
};
# not in nixpkgs yet
woomer.url = "github:coffeeispower/woomer";
ags = {
url = "github:Aylur/ags";
inputs.nixpkgs.follows = "nixpkgs";
};
xremap-flake = {
url = "github:xremap/nix-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
spicetify-nix = {
url = "github:Gerg-L/spicetify-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
base16.url = "github:SenchoPens/base16.nix";
matugen = {
url = "github:InioX/matugen";
inputs.nixpkgs.follows = "nixpkgs";
};
# Temporarily disabled, as git auth via ssh is ANNOYING
# # Requires git SSH access to the repo as of now (still private)
# #ghostty.url = "git+ssh://[email protected]/mitchellh/ghostty?ref=main&rev=09c765f42a0c972b0cd5367a5195a600a261e400";
# ghostty.url = "git+ssh://[email protected]/mitchellh/ghostty";
};
}