style formatting

dev-docs
Moritz Böhme 2021-12-14 12:21:41 +01:00
parent d699675386
commit b0b9a4e5f0
2 changed files with 11 additions and 8 deletions

View File

@ -4,7 +4,8 @@ let
emacs = with pkgs;
((emacsPackagesNgGen emacsUnstableGcc).emacsWithPackages
(epkgs: [ epkgs.vterm epkgs.emacsql-sqlite3 ]));
in {
in
{
fonts.fonts = [ pkgs.emacs-all-the-icons-fonts ];
home-manager.users.moritz = {

View File

@ -4,13 +4,15 @@
fileSystems."/media/media" = {
device = "//192.168.0.2/media";
fsType = "cifs";
options = let
# this line prevents hanging on network split
automount_opts =
"x-systemd.automount,noauto,x-systemd.idle-timeout=60,x-systemd.device-timeout=5s,x-systemd.mount-timeout=5s";
options =
let
# this line prevents hanging on network split
automount_opts =
"x-systemd.automount,noauto,x-systemd.idle-timeout=60,x-systemd.device-timeout=5s,x-systemd.mount-timeout=5s";
in [
"${automount_opts},credentials=/run/agenix/smbMedia,uid=1000,gid=100"
];
in
[
"${automount_opts},credentials=/run/agenix/smbMedia,uid=1000,gid=100"
];
};
}