format nix

This commit is contained in:
ChaotiCryptidz 2021-12-29 13:17:01 +00:00
parent d857958abc
commit bcaa56ee97
4 changed files with 23 additions and 25 deletions

View file

@ -1,4 +1,4 @@
{...}: {
{ ... }: {
programs.ssh.enable = true;
programs.ssh.matchBlocks = {
"lappy" = {

View file

@ -44,7 +44,7 @@
enable = true;
networks.eth0 = {
name = "eth0";
address = ["2a01:4f9:c010:8beb::/64"];
address = [ "2a01:4f9:c010:8beb::/64" ];
gateway = [ "fe80::1" ];
};
};

View file

@ -1,10 +1,7 @@
{...}: {
{ ... }: {
services.restic.backups.hetzner-vm = {
user = "root";
paths = [
"/var/lib/postgresql"
"/var/lib/vault"
];
paths = [ "/var/lib/postgresql" "/var/lib/vault" ];
timerConfig = {
OnBootSec = "1m";
OnCalendar = "daily";

View file

@ -3,4 +3,5 @@
services.tlp.enable = true;
powerManagement.enable = true;
powerManagement.powertop.enable = true;
programs.light.enable = true;
}