Feature/rfc 0166 fmt (#113)
* change formatter to nixfmt-rfc-style Signed-off-by: ahuston-0 <aliceghuston@gmail.com> * Add rfc-style fmt'ing Signed-off-by: ahuston-0 <aliceghuston@gmail.com> --------- Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
{pkgs, ...}: {
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
time.timeZone = "America/New_York";
|
||||
console.keyMap = "us";
|
||||
networking = {
|
||||
@ -7,7 +8,7 @@
|
||||
};
|
||||
|
||||
boot = {
|
||||
zfs.extraPools = ["Main"];
|
||||
zfs.extraPools = [ "Main" ];
|
||||
filesystem = "zfs";
|
||||
useSystemdBoot = true;
|
||||
};
|
||||
@ -21,7 +22,7 @@
|
||||
daemon."settings" = {
|
||||
experimental = true;
|
||||
data-root = "/var/lib/docker";
|
||||
exec-opts = ["native.cgroupdriver=systemd"];
|
||||
exec-opts = [ "native.cgroupdriver=systemd" ];
|
||||
log-opts = {
|
||||
max-size = "10m";
|
||||
max-file = "5";
|
||||
@ -36,7 +37,7 @@
|
||||
};
|
||||
|
||||
environment = {
|
||||
systemPackages = with pkgs; [docker-compose];
|
||||
systemPackages = with pkgs; [ docker-compose ];
|
||||
etc = {
|
||||
# Creates /etc/lynis/custom.prf
|
||||
"lynis/custom.prf" = {
|
||||
@ -60,7 +61,7 @@
|
||||
services = {
|
||||
nfs.server.enable = true;
|
||||
|
||||
openssh.ports = [352];
|
||||
openssh.ports = [ 352 ];
|
||||
|
||||
smartd.enable = true;
|
||||
|
||||
@ -80,7 +81,7 @@
|
||||
|
||||
zerotierone = {
|
||||
enable = true;
|
||||
joinNetworks = ["e4da7455b2ae64ca"];
|
||||
joinNetworks = [ "e4da7455b2ae64ca" ];
|
||||
};
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user