this repo has no description
1{
2 pkgs,
3 inputs,
4 ...
5}: {
6 nixpkgs.config.allowUnfree = true;
7
8 nix.useDaemon = true;
9 services.nix-daemon.enable = true;
10
11 environment.systemPackages = [
12 pkgs.cachix
13 ];
14
15 nix.registry = {
16 darwin.flake = inputs.darwin;
17 dotfiles.flake = inputs.self;
18 flake-parts.flake = inputs.flake-parts;
19 };
20
21 nix.nixPath = [
22 {nixpkgs = inputs.nixpkgs;}
23 ];
24
25 # nix.package = pkgs.nixFlakes;
26 nix.extraOptions = ''
27 keep-outputs = true
28 keep-derivations = true
29
30 experimental-features = nix-command flakes
31
32 extra-trusted-users = hauleth
33 '';
34}