-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
executable file
·98 lines (94 loc) · 2.45 KB
/
Copy pathflake.nix
File metadata and controls
executable file
·98 lines (94 loc) · 2.45 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
{
inputs = {
flake-parts.url = "github:hercules-ci/flake-parts";
import-tree.url = "github:vic/import-tree";
wrappers-b.url = "github:BirdeeHub/nix-wrapper-modules";
wrappers-l.url = "github:lassulus/wrappers";
affinity = {
url = "github:mrshmllow/affinity-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
# BUG: v2 is broken
apple-emoji-ttf = {
url = "github:samuelngs/apple-emoji-ttf/v1";
inputs.nixpkgs.follows = "nixpkgs";
};
catppuccin-ghostty = {
url = "github:catppuccin/ghostty";
flake = false;
};
ghostty-cursor-shaders = {
url = "github:sahaj-b/ghostty-cursor-shaders";
flake = false;
};
nix-darwin = {
url = "github:nix-darwin/nix-darwin";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-index-database = {
url = "github:nix-community/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-rosetta-builder = {
url = "github:cpick/nix-rosetta-builder";
inputs.nixpkgs.follows = "nixpkgs";
};
nixos-hardware = {
url = "github:NixOS/nixos-hardware";
};
nixpkgs = {
url = "github:nixos/nixpkgs/nixos-unstable";
};
nur = {
url = "github:nix-community/NUR";
inputs.nixpkgs.follows = "nixpkgs";
};
nu_scripts = {
url = "github:nushell/nu_scripts";
flake = false;
};
nvim = {
url = "github:emonadeo/nvim";
flake = false;
};
spotx = {
url = "github:SpotX-Official/SpotX-Bash";
flake = false;
};
starship-jj = {
url = "gitlab:lanastara_foss/starship-jj";
inputs.nixpkgs.follows = "nixpkgs";
};
paneru = {
url = "github:karinushka/paneru";
inputs.nixpkgs.follows = "nixpkgs";
inputs.nix-darwin.follows = "nix-darwin";
};
yazi-flavors = {
url = "github:yazi-rs/flavors";
flake = false;
};
};
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } (
{ lib, ... }:
{
imports = [ (inputs.import-tree ./nix) ];
# TODO: Should this be defined elsewhere?
options.flake = {
lib = lib.mkOption { };
darwinModules = lib.mkOption { };
sharedModules = lib.mkOption { };
wrapperModules = lib.mkOption { };
};
config = {
systems = [
"x86_64-linux"
"aarch64-linux"
"aarch64-darwin"
];
};
}
);
}