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; emacs = with pkgs;
((emacsPackagesNgGen emacsUnstableGcc).emacsWithPackages ((emacsPackagesNgGen emacsUnstableGcc).emacsWithPackages
(epkgs: [ epkgs.vterm epkgs.emacsql-sqlite3 ])); (epkgs: [ epkgs.vterm epkgs.emacsql-sqlite3 ]));
in { in
{
fonts.fonts = [ pkgs.emacs-all-the-icons-fonts ]; fonts.fonts = [ pkgs.emacs-all-the-icons-fonts ];
home-manager.users.moritz = { home-manager.users.moritz = {

View File

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