-
Notifications
You must be signed in to change notification settings - Fork 2
/
flake.nix
102 lines (83 loc) · 2.46 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
description = "TotalTaxAmount's NixOS and home-manager flake";
inputs = {
nixpkgs.url = "nixpkgs/nixpkgs-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprland-contrib = {
url = "github:hyprwm/contrib";
inputs.nixpkgs.follows = "nixpkgs";
};
spicetify-nix = {
url = "github:Gerg-L/spicetify-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-colors = {
url = "github:misterio77/nix-colors";
};
aquamarine = {
type = "git";
url = "https://github.com/hyprwm/aquamarine";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-gaming = {
url = "github:fufexan/nix-gaming";
};
nix-citizen = {
url = "github:LovingMelody/nix-citizen";
inputs.nix-gaming.follows = "nix-gaming";
};
hyprland = {
# url = "github:hyprwm/Hyprland?ref=v0.41.2&submodules=1";
type = "git";
submodules = true;
url = "https://github.com/hyprwm/Hyprland";
# rev = "e5ff19ac0f2c8d53a0c847d06a17676e636d6447";
inputs.aquamarine.follows = "aquamarine";
inputs.nixpkgs.follows = "nixpkgs";
};
# hyprsplit = {
# type = "git";
# url = "https://github.com/shezdy/hyprsplit";
# # ref = "refs/tags/v0.41.2";
# inputs.hyprland.follows = "hyprland";
# };
split-monitor-workspaces = {
url = "github:Duckonaut/split-monitor-workspaces";
inputs.hyprland.follows = "hyprland";
};
chaotic = {
url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
inputs.nixpkgs.follows = "nixpkgs";
};
# nix-gaming = {
# url = github:fufexan/nix-gaming;
# inputs.nixpkgs.follows = "nixpkgs";
# };
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
mcmojave-hyprcursor = {
url = "github:libadoxon/mcmojave-hyprcursor";
inputs.nixpkgs.follows = "nixpkgs";
};
# vscode-server.url = github:nix-community/nixos-vscode-server;
};
outputs =
{
nixpkgs,
...
}@inputs:
let
system = "x86_64-linux";
user = "totaltaxamount";
in
{
homeConfigurations = import ./outputs/home.nix { inherit inputs system user; };
nixosConfigurations = import ./outputs/nixos.nix { inherit inputs system user; };
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixfmt-rfc-style;
};
}