-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathflake.nix
More file actions
82 lines (79 loc) · 2.05 KB
/
Copy pathflake.nix
File metadata and controls
82 lines (79 loc) · 2.05 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
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
catppuccin.url = "github:catppuccin/nix";
uwu-colors.url = "github:q60/uwu_colors";
flake-parts.url = "github:hercules-ci/flake-parts";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
recall = {
url = "github:indium114/recall";
inputs.nixpkgs.follows = "nixpkgs";
};
hocusfocus = {
url = "github:indium114/hocusfocus";
inputs.nixpkgs.follows = "nixpkgs";
};
fastcards = {
url = "github:indium114/fastcards";
inputs.nixpkgs.follows = "nixpkgs";
};
pricetag = {
url = "github:indium114/pricetag";
inputs.nixpkgs.follows = "nixpkgs";
};
spyglass = {
url = "github:indium114/spyglass";
inputs.nixpkgs.follows = "nixpkgs";
};
satchel = {
url = "github:indium114/satchel";
inputs.nixpkgs.follows = "nixpkgs";
};
sorta = {
url = "github:indium114/sorta";
inputs.nixpkgs.follows = "nixpkgs";
};
rubbish = {
url = "github:indium114/rubbish";
inputs.nixpkgs.follows = "nixpkgs";
};
ssuika = {
url = "git+https://codeberg.org/indium114/ssuika";
inputs.nixpkgs.follows = "nixpkgs";
};
bunkers = {
url = "github:indium114/bunkers";
inputs.nixpkgs.follows = "nixpkgs";
};
haal = {
url = "github:indium114/haal";
inputs.nixpkgs.follows = "nixpkgs";
};
termfarm = {
url = "github:indium114/termfarm";
inputs.nixpkgs.follows = "nixpkgs";
};
omnisearch = {
url = "github:indium114/omnisearch-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
rsstig = {
url = "github:indium114/rsstig";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
./hosts/frosties.nix
];
};
}