this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 9e4e568301c20f75cf636642b9c93f3b6a8a474f 34 lines 580 B view raw
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}