Streamline formatting of function arguments

This commit is contained in:
Daniel Siepmann 2024-05-29 09:50:32 +02:00
parent 8a13daa6a1
commit 56fed868b0
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
46 changed files with 168 additions and 88 deletions

View file

@ -1,4 +1,9 @@
{ config, pkgs, lib, ... }: {
config
,pkgs
,lib
,...
}:
let let
ownLib = import ./home/packages/lib; ownLib = import ./home/packages/lib;

Binary file not shown.

View file

@ -1,4 +1,6 @@
{ lib }: {
lib
}:
{ {
enable = true; enable = true;

View file

@ -1,4 +1,7 @@
{ config, pkgs }: {
config
,pkgs
}:
# Possible alternatives: # Possible alternatives:
# https://github.com/FedoraQt/adwaita-qt # https://github.com/FedoraQt/adwaita-qt

View file

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

View file

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

View file

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

View file

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

View file

@ -1,4 +1,8 @@
{ config, pkgs, ... }: {
config
,pkgs
,...
}:
{ {
config = { config = {

View file

@ -1,4 +1,7 @@
{ pkgs, ownLib }: {
pkgs
,ownLib
}:
with pkgs; [ with pkgs; [
nix nix

View file

@ -1,9 +1,9 @@
{ {
writeShellApplication writeShellApplication
, borgbackup ,borgbackup
, git ,git
, rsync ,rsync
, callPackage ,callPackage
}: }:
writeShellApplication { writeShellApplication {

View file

@ -1,6 +1,6 @@
{ {
callPackage callPackage
, ownLib ,ownLib
}: }:
[ [

View file

@ -1,11 +1,11 @@
{ {
writeShellApplication, writeShellApplication
dmenu, ,dmenu
dunst, ,dunst
libnotify, ,libnotify
bc, ,bc
i3, ,i3
xdg-utils ,xdg-utils
}: }:
let let

View file

@ -1,6 +1,6 @@
{ {
writeShellApplication, writeShellApplication
rclone ,rclone
}: }:
writeShellApplication { writeShellApplication {

View file

@ -1,6 +1,6 @@
{ {
writeShellApplication, writeShellApplication
rclone ,rclone
}: }:
writeShellApplication { writeShellApplication {

View file

@ -1,8 +1,8 @@
{ {
writeShellApplication, writeShellApplication
bash, ,bash
gnused, ,gnused
ownLib ,ownLib
}: }:
let let

View file

@ -1,6 +1,6 @@
{ {
writeShellApplication, writeShellApplication
git ,git
}: }:
writeShellApplication { writeShellApplication {

View file

@ -1,6 +1,6 @@
{ {
writeShellApplication, writeShellApplication
podman ,podman
}: }:
writeShellApplication { writeShellApplication {

View file

@ -1,6 +1,6 @@
{ {
writeShellApplication, writeShellApplication
podman ,podman
}: }:
writeShellApplication { writeShellApplication {

View file

@ -1,4 +1,6 @@
{ writeShellApplication }: {
writeShellApplication
}:
writeShellApplication { writeShellApplication {
name = "custom-update-operating-system"; name = "custom-update-operating-system";

View file

@ -1,4 +1,6 @@
{ writeShellApplication }: {
writeShellApplication
}:
writeShellApplication { writeShellApplication {
name = "custom-update-system"; name = "custom-update-system";

View file

@ -1,6 +1,6 @@
{ {
writeShellApplication writeShellApplication
, callPackage ,callPackage
}: }:
writeShellApplication { writeShellApplication {

View file

@ -1,7 +1,7 @@
{ {
writeShellApplication writeShellApplication
, pv ,pv
, gzip ,gzip
}: }:
writeShellApplication { writeShellApplication {

View file

@ -1,11 +1,11 @@
{ {
stdenv, stdenv
fetchFromGitHub, ,fetchFromGitHub
meson, ,meson
ninja, ,ninja
lib, ,lib
pidgin, ,pidgin
libnotify ,libnotify
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {

View file

@ -1,12 +1,12 @@
{ {
stdenv, stdenv
fetchFromGitHub, ,fetchFromGitHub
callPackage, ,callPackage
meson, ,meson
ninja, ,ninja
lib, ,lib
pidgin, ,pidgin
libnotify ,libnotify
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {

View file

@ -1,12 +1,12 @@
{ {
stdenv, stdenv
fetchFromGitHub, ,fetchFromGitHub
lib, ,lib
git, ,git
pidgin, ,pidgin
glib, ,glib
json-glib, ,json-glib
discount # markdown implementation ,discount # markdown implementation
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {

View file

@ -1,10 +1,10 @@
{ {
stdenv, stdenv
fetchFromGitHub, ,fetchFromGitHub
lib, ,lib
pidgin, ,pidgin
glib, ,glib
json-glib ,json-glib
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {

View file

@ -1,6 +1,6 @@
{ {
writeShellApplication, writeShellApplication
python3 ,python3
}: }:
let let

View file

@ -1,4 +1,4 @@
{ }: _:
{ {
enable = true; enable = true;

View file

@ -1,4 +1,6 @@
{ pkgs }: {
pkgs
}:
{ {
enable = true; enable = true;

View file

@ -1,4 +1,6 @@
{ config }: {
config
}:
{ {
enable = true; enable = true;

View file

@ -1,4 +1,6 @@
{ config }: {
config
}:
{ {
enable = true; enable = true;

View file

@ -1,4 +1,7 @@
{ config }: {
config
}:
{ {
enable = true; enable = true;
colors = { colors = {

View file

@ -1,4 +1,6 @@
{ config }: {
config
}:
{ {
enable = true; enable = true;

View file

@ -1,4 +1,6 @@
{ pkgs }: {
pkgs
}:
{ {
enable = true; enable = true;

View file

@ -1,4 +1,6 @@
{ pkgs }: {
pkgs
}:
{ {
enable = true; enable = true;

View file

@ -1,4 +1,7 @@
{ config, pkgs }: {
config
,pkgs
}:
# Sources: # Sources:
# https://thevaluable.dev/zsh-install-configure-mouseless/ # https://thevaluable.dev/zsh-install-configure-mouseless/

View file

@ -1,4 +1,6 @@
{ pkgs }: {
pkgs
}:
{ {
enable = true; enable = true;

View file

@ -1,4 +1,8 @@
{ config, ownLib, pkgs }: {
config
,ownLib
,pkgs
}:
{ {

View file

@ -1,4 +1,6 @@
{ pkgs }: {
pkgs
}:
{ {
Unit = { Unit = {

View file

@ -1,4 +1,6 @@
{ config }: {
config
}:
{ {
enable = true; enable = true;

View file

@ -1,4 +1,6 @@
{ pkgs }: {
pkgs
}:
{ {
enable = true; enable = true;

View file

@ -1,4 +1,7 @@
{ config, pkgs }: {
config
,pkgs
}:
{ {
services = { services = {

View file

@ -1,4 +1,6 @@
{ pkgs }: {
pkgs
}:
{ {
enable = true; enable = true;

View file

@ -1,4 +1,8 @@
{ config, pkgs, ownLib }: {
config
,pkgs
,ownLib
}:
let let
initExtraHikari = '' initExtraHikari = ''