ran nixpkgs-fmt

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2022-12-08 01:11:53 +05:30
parent aaf19ee844
commit e6cb5b2615
18 changed files with 87 additions and 75 deletions

View File

@@ -1,4 +1,4 @@
{inputs, config, pkgs, ... }:
{ inputs, config, pkgs, ... }:
{
programs.neovim = {

View File

@@ -3,7 +3,7 @@
with lib;
let
cfg = config.services.vault-agent;
json = pkgs.formats.json {};
json = pkgs.formats.json { };
in
{
options = {
@@ -17,10 +17,10 @@ in
The package used for the vault agent
'';
};
settings = mkOption {
type = json.type;
default = {};
default = { };
description = ''
Settings for the agent
'';

View File

@@ -1,14 +1,14 @@
{config, ...}:
{ config, ... }:
{
nix.buildMachines = [ {
hostName = "satori";
systems = ["x86_64-linux" "aarch64-linux"];
maxJobs = 4;
speedFactor = 2;
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
}] ;
nix.distributedBuilds = true;
nix.extraOptions = ''
builders-use-substitutes = true
'';
nix.buildMachines = [{
hostName = "satori";
systems = [ "x86_64-linux" "aarch64-linux" ];
maxJobs = 4;
speedFactor = 2;
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
}];
nix.distributedBuilds = true;
nix.extraOptions = ''
builders-use-substitutes = true
'';
}