style formatting
parent
d699675386
commit
b0b9a4e5f0
|
@ -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 = {
|
||||||
|
|
|
@ -4,12 +4,14 @@
|
||||||
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 =
|
||||||
|
let
|
||||||
# this line prevents hanging on network split
|
# this line prevents hanging on network split
|
||||||
automount_opts =
|
automount_opts =
|
||||||
"x-systemd.automount,noauto,x-systemd.idle-timeout=60,x-systemd.device-timeout=5s,x-systemd.mount-timeout=5s";
|
"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"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue