-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathflake.nix
More file actions
125 lines (106 loc) · 2.88 KB
/
flake.nix
File metadata and controls
125 lines (106 loc) · 2.88 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
{
description = "Soothing pastel theme for Nix";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs =
{ self, nixpkgs }:
let
inherit (nixpkgs) lib;
# Systems for public outputs
systems = lib.systems.flakeExposed;
# Systems for development related outputs
# (that evaluate more exotic packages cleanly, unlike some systems above)
devSystems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
forAllSystems = lib.genAttrs systems;
forAllDevSystems = lib.genAttrs devSystems;
mkModule =
{
name ? "catppuccin",
type,
file,
}:
{ pkgs, ... }:
{
_file = "${self.outPath}/flake.nix#${type}Modules.${name}";
imports = [ file ];
catppuccin.sources = lib.mkDefault self.packages.${pkgs.stdenv.hostPlatform.system};
};
in
{
packages = forAllSystems (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
catppuccinPackages = (import ./default.nix { inherit pkgs; }).packages;
in
catppuccinPackages
// {
default = catppuccinPackages.whiskers;
}
);
devShells = forAllDevSystems (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
lib.genAttrs [ "default" "ci" ] (
name:
import ./shell.nix {
inherit pkgs;
minimal = name == "ci";
}
)
);
formatter = forAllDevSystems (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
pkgs.treefmt.withConfig {
runtimeInputs = with pkgs; [
keep-sorted
nixfmt
];
settings = {
on-unmatched = "info";
tree-root-file = "flake.nix";
formatter = {
keep-sorted = {
command = "keep-sorted";
includes = [ "*" ];
};
nixfmt = {
command = "nixfmt";
includes = [ "*.nix" ];
};
};
};
}
);
# TODO: Remove before 2.0 is stable
homeManagerModules = lib.mapAttrs (
name:
lib.warn "Obsolete Flake attribute `catppuccin.homeManagerModules.${name}' is used. It was renamed to `catppuccin.homeModules.${name}`'."
) self.homeModules;
homeModules = {
default = self.homeModules.catppuccin;
catppuccin = mkModule {
type = "homeManager";
file = ./modules/home-manager;
};
};
nixosModules = {
default = self.nixosModules.catppuccin;
catppuccin = mkModule {
type = "nixos";
file = ./modules/nixos;
};
};
};
}