NixOS-based container for running GitHub actions
0
fork

Configure Feed

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

fix nix conf

+6 -6
+6 -6
flake.nix
··· 230 230 groupContents = (lib.concatStringsSep "\n" (lib.attrValues (lib.mapAttrs groupToGroup groups))); 231 231 232 232 defaultNixConf = { 233 - accept-flake-config = false; 234 - sandbox = "true"; 233 + accept-flake-config = "false"; 235 234 build-users-group = "nixbld"; 235 + experimental-features = [ 236 + "flakes" 237 + "nix-command" 238 + ]; 239 + sandbox = "true"; 236 240 trusted-users = [ 237 241 "root" 238 242 "github" 239 243 ]; 240 244 trusted-public-keys = [ 241 245 "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" 242 - ]; 243 - experimental-features = [ 244 - "flakes" 245 - "nix-command" 246 246 ]; 247 247 }; 248 248