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