feat: More gluster mounts

This commit is contained in:
Kyle Brown 2023-12-06 17:41:10 -08:00
parent 0d3e997a8d
commit 7b96a0961a
2 changed files with 24 additions and 12 deletions

View file

@ -25,6 +25,11 @@
what = "127.0.0.1:/dockerdata";
where = "/mnt/gdockerdata";
}
{
type = "glusterfs";
what = "127.0.0.1:/backups";
where = "/mnt/gbackups";
}
];
systemd.automounts = [
@ -40,6 +45,10 @@
wantedBy = ["multi-user.target"];
where = "/mnt/gdockerdata";
}
{
wantedBy = ["multi-user.target"];
where = "/mnt/gbackups";
}
];
}

View file

@ -1,20 +1,23 @@
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}: {
programs.swaylock.settings = {
fade-in=1;
fade-in = 1;
clock=true;
timestr="%R";
datestr="%a, %b %d";
clock = true;
timestr = "%R";
datestr = "%a, %b %d";
effect-blur="20x6";
effect-blur = "20x6";
indicator=true;
indicator-radius=320;
indicator-thickness=20;
indicator = true;
indicator-radius = 320;
indicator-thickness = 20;
ignore-empty-password=true;
disable-caps-lock-text=true;
ignore-empty-password = true;
disable-caps-lock-text = true;
};
}