-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
41 lines (37 loc) · 950 Bytes
/
flake.nix
File metadata and controls
41 lines (37 loc) · 950 Bytes
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
{
description = "CSS";
inputs = {
nixpkgs-stable.url = "github:nixos/nixpkgs/release-25.11";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable";
nixpkgs.follows = "nixpkgs-stable";
flake-parts.url = "github:hercules-ci/flake-parts";
import-tree.url = "github:vic/import-tree";
};
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } (top: {
systems = [
"x86_64-linux"
"aarch64-linux"
"x66_64-darwin"
"aarch64-darwin"
];
perSystem =
{ pkgs, ... }:
let
pkgs' = import inputs.nixpkgs {
inherit (pkgs.stdenv.hostPlatform) system;
config.allowUnfree = true;
};
in
{
devShells.default = pkgs'.mkShell {
packages = with pkgs'; [
deno
nil
claude-code
];
};
};
});
}