-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
125 lines (97 loc) · 2.91 KB
/
Copy pathflake.nix
File metadata and controls
125 lines (97 loc) · 2.91 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-weekly.url = "github:nixos/nixpkgs/567a49d1913ce81ac6e9582e3553dd90a955875f";
flake-parts.url = "github:hercules-ci/flake-parts/main";
home-manager = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
disko = {
url = "github:nix-community/disko/master";
inputs.nixpkgs.follows = "nixpkgs";
};
impermanence = {
url = "github:nix-community/impermanence/master";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
sops-nix = {
url = "github:Mic92/sops-nix/master";
inputs.nixpkgs.follows = "nixpkgs";
};
deploy-rs = {
url = "github:serokell/deploy-rs/master";
inputs.nixpkgs.follows = "nixpkgs";
};
quadlet-nix = {
url = "github:SEIAROTg/quadlet-nix/main";
inputs.nixpkgs.follows = "nixpkgs";
};
stylix = {
url = "github:nix-community/stylix/master";
inputs.nixpkgs.follows = "nixpkgs";
};
plasma-manager = {
url = "github:nix-community/plasma-manager/trunk";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
niri = {
url = "github:sodiboo/niri-flake/main";
inputs.nixpkgs.follows = "nixpkgs";
};
noctalia-qs = {
url = "github:noctalia-dev/noctalia-qs/master";
inputs.nixpkgs.follows = "nixpkgs";
};
noctalia = {
url = "github:noctalia-dev/noctalia-shell/main";
inputs.nixpkgs.follows = "nixpkgs";
inputs.noctalia-qs.follows = "noctalia-qs";
};
matugen = {
url = "github:/InioX/matugen/main";
inputs.nixpkgs.follows = "nixpkgs";
};
catppuccin = {
url = "github:catppuccin/nix/main";
inputs.nixpkgs.follows = "nixpkgs";
};
hermes-agent = {
url = "github:NousResearch/hermes-agent/main";
inputs.nixpkgs.follows = "nixpkgs";
};
dotnvim = {
url = "github:OuOich/dotnvim/master";
};
zen-browser = {
url = "github:0xc000022070/zen-browser-flake/main";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
};
outputs =
inputs@{ self, flake-parts, ... }:
flake-parts.lib.mkFlake { inherit self inputs; } {
systems = [
"x86_64-linux"
"aarch64-linux"
];
imports = [
inputs.home-manager.flakeModules.home-manager
./flake/shell.nix
./flake/library.nix
./flake/packages/wallpapers.nix
./flake/dotnix.nix
./flake/nixos/overlays.nix
./flake/nixos/options/system.nix
./flake/nixos/options/home.nix
./flake/nixos/hosts/mochi.nix
./flake/nixos/hosts/taco.nix
./flake/nixos/hosts/vps-rainyun-gofer.nix
./flake/nixos/deploy.nix
];
debug = true;
};
}