diff --git a/systems/hikari3/cachix.nix b/systems/hikari3/cachix.nix index ecd2d39..bac6ba2 100644 --- a/systems/hikari3/cachix.nix +++ b/systems/hikari3/cachix.nix @@ -1,6 +1,9 @@ - # WARN: this file will get overwritten by $ cachix use -{ pkgs, lib, ... }: +{ + ,pkgs + ,lib + ,... +}: let folder = ./cachix; diff --git a/systems/hikari3/cachix/fossar.nix b/systems/hikari3/cachix/fossar.nix index 0e266e4..100ae3c 100644 --- a/systems/hikari3/cachix/fossar.nix +++ b/systems/hikari3/cachix/fossar.nix @@ -1,4 +1,3 @@ - { nix = { settings = { diff --git a/systems/hikari3/configuration.nix b/systems/hikari3/configuration.nix index 391e9b5..1eb4eb7 100644 --- a/systems/hikari3/configuration.nix +++ b/systems/hikari3/configuration.nix @@ -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 = [ diff --git a/systems/hikari3/hardware-configuration.nix b/systems/hikari3/hardware-configuration.nix index 78b365c..0235839 100644 --- a/systems/hikari3/hardware-configuration.nix +++ b/systems/hikari3/hardware-configuration.nix @@ -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 = [ diff --git a/systems/hikari3/web-development/default.nix b/systems/hikari3/web-development/default.nix index 7c1b9f8..d7e33ac 100644 --- a/systems/hikari3/web-development/default.nix +++ b/systems/hikari3/web-development/default.nix @@ -1,4 +1,9 @@ -{ pkgs, config, lib, ... }: +{ + pkgs + ,config + ,lib + ,... +}: let diff --git a/systems/hikari3/web-development/projects/private.nix b/systems/hikari3/web-development/projects/private.nix index 771d83d..ae664cf 100644 --- a/systems/hikari3/web-development/projects/private.nix +++ b/systems/hikari3/web-development/projects/private.nix @@ -1,4 +1,9 @@ -{ pkgs, lib, config, ... }: +{ + pkgs + ,lib + ,config + ,... +}: let diff --git a/systems/hikari3/web-development/projects/service-wrapper.nix b/systems/hikari3/web-development/projects/service-wrapper.nix index 7e78f12..6669aff 100644 --- a/systems/hikari3/web-development/projects/service-wrapper.nix +++ b/systems/hikari3/web-development/projects/service-wrapper.nix @@ -1,4 +1,9 @@ -{ pkgs, lib, config, ... }: +{ + ,pkgs + ,lib + ,config + ,... +}: let domain = "mailhog.localhost"; diff --git a/systems/hikari3/web-development/projects/typo3.nix b/systems/hikari3/web-development/projects/typo3.nix index bd4596e..86313cf 100644 --- a/systems/hikari3/web-development/projects/typo3.nix +++ b/systems/hikari3/web-development/projects/typo3.nix @@ -1,4 +1,8 @@ -{ lib, config, ... }: +{ + ,lib + ,config + ,... +}: import ./../lib/create-static.nix { inherit config;