-
Notifications
You must be signed in to change notification settings - Fork 1
/
flake.nix
56 lines (50 loc) · 1.69 KB
/
flake.nix
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
{
inputs = {
flake-parts.url = "github:hercules-ci/flake-parts";
flake-root.url = "github:srid/flake-root";
nix-index-database.url = "github:nix-community/nix-index-database";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
treefmt-nix.url = "github:numtide/treefmt-nix";
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = inputs@{ self, nixpkgs, nixpkgs-unstable, nix-index-database, flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
inputs.treefmt-nix.flakeModule
inputs.flake-root.flakeModule
];
flake = {
nixosConfigurations.nixluon = nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux";
modules = [
./configuration.nix
nix-index-database.nixosModules.nix-index
{
programs.nix-index-database.comma.enable = true;
}
];
specialArgs = {
unstable-pkgs = nixpkgs-unstable.legacyPackages.${system};
};
};
};
systems = [
# systems for which you want to build the `perSystem` attributes
"x86_64-linux"
];
perSystem = { config, pkgs, ... }: {
treefmt.config = {
inherit (config.flake-root) projectRootFile;
# formats .nix files
programs.nixpkgs-fmt.enable = true;
};
devShells.default = pkgs.mkShell {
packages = [
config.treefmt.build.wrapper
] ++ (builtins.attrValues config.treefmt.build.programs);
};
};
};
}