this repo has no description
1{
2 pkgs,
3 inputs,
4 ...
5}:
6{
7 # nixpkgs.config.allowUnfree = true;
8
9 nix.enable = true;
10 nix.package = pkgs.lixPackageSets.stable.lix;
11
12 environment.systemPackages = [
13 pkgs.cachix
14 ];
15
16 nix.registry = {
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.settings = {
26 use-xdg-base-directories = true;
27 experimental-features = [
28 "nix-command"
29 "flakes"
30 ];
31 };
32
33 # nix.package = pkgs.nixFlakes;
34 nix.extraOptions = ''
35 keep-outputs = true
36 keep-derivations = true
37
38 extra-trusted-users = hauleth
39 '';
40}