Streamline format of function arguments

This commit is contained in:
Daniel Siepmann 2024-06-20 07:33:16 +02:00
parent 1139c51abb
commit 37542723ec
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
8 changed files with 40 additions and 9 deletions

View file

@ -1,6 +1,9 @@
# WARN: this file will get overwritten by $ cachix use <name>
{ pkgs, lib, ... }:
{
,pkgs
,lib
,...
}:
let
folder = ./cachix;

View file

@ -1,4 +1,3 @@
{
nix = {
settings = {

View file

@ -2,7 +2,11 @@
# your system. help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
{
,config
,pkgs
,...
}:
{
imports = [

View file

@ -1,7 +1,13 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
,config
,lib
,pkgs
,modulesPath
,...
}:
{
imports = [

View file

@ -1,4 +1,9 @@
{ pkgs, config, lib, ... }:
{
pkgs
,config
,lib
,...
}:
let

View file

@ -1,4 +1,9 @@
{ pkgs, lib, config, ... }:
{
pkgs
,lib
,config
,...
}:
let

View file

@ -1,4 +1,9 @@
{ pkgs, lib, config, ... }:
{
,pkgs
,lib
,config
,...
}:
let
domain = "mailhog.localhost";

View file

@ -1,4 +1,8 @@
{ lib, config, ... }:
{
,lib
,config
,...
}:
import ./../lib/create-static.nix {
inherit config;