···7# IF you make any change to this file, use:
8# `nix run .#write-flake`
9#
10-# We provide nix-unit and home-manager for common
11-# usage.
12{ inputs, ... }:
13{
14 # change "main" with a commit where bug is present
15 flake-file.inputs.den.url = "github:vic/den/main";
1617- flake-file.inputs.nix-unit = {
18- url = "github:nix-community/nix-unit";
19- inputs.nixpkgs.follows = "nixpkgs";
20- inputs.flake-parts.follows = "flake-parts";
21- inputs.treefmt-nix.follows = "treefmt-nix";
22- };
23-24 flake-file.inputs.home-manager = {
25 url = "github:nix-community/home-manager";
26 inputs.nixpkgs.follows = "nixpkgs";
27 };
2829- imports = [
30- inputs.nix-unit.modules.flake.default
31- ];
32-033}
···7# IF you make any change to this file, use:
8# `nix run .#write-flake`
9#
10+# We provide nix-darwin and home-manager for common usage.
011{ inputs, ... }:
12{
13 # change "main" with a commit where bug is present
14 flake-file.inputs.den.url = "github:vic/den/main";
1516+ # included so we can test HM integrations.
00000017 flake-file.inputs.home-manager = {
18 url = "github:nix-community/home-manager";
19 inputs.nixpkgs.follows = "nixpkgs";
20 };
2122+ # included for testing darwin hosts.
23+ darwin = {
24+ url = "github:nix-darwin/nix-darwin";
25+ inputs.nixpkgs.follows = "nixpkgs";
26+ };
27}