diff options
author | makefu <github@syntax-fehler.de> | 2019-06-17 07:57:26 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2019-06-17 07:57:26 +0200 |
commit | c9f906a54aa0cb866d1605524ae3921f3ddf4fd9 (patch) | |
tree | 878d9feb4fc4bf9ec2f15dac36a38fdc40d26e89 /makefu | |
parent | 2a5743d3fafa825822755b994ea3a373e38ad569 (diff) |
ma gum.r/hardware-config: do not automount binaergewtter
only nofail
Diffstat (limited to 'makefu')
-rw-r--r-- | makefu/1systems/gum/hardware-config.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/makefu/1systems/gum/hardware-config.nix b/makefu/1systems/gum/hardware-config.nix index 857fad7aa..e49b621e7 100644 --- a/makefu/1systems/gum/hardware-config.nix +++ b/makefu/1systems/gum/hardware-config.nix @@ -41,7 +41,7 @@ in { boot.loader.grub.enable = true; boot.loader.grub.version = 2; boot.loader.grub.devices = [ main-disk ]; - boot.initrd.kernelModules = [ "dm-raid" "dm_cache" ]; + boot.initrd.kernelModules = [ "dm-raid" "dm_cache" "dm-thin-pool" ]; boot.initrd.availableKernelModules = [ "ata_piix" "vmw_pvscsi" "virtio_pci" "sd_mod" "ahci" "xhci_pci" "ehci_pci" "ahci" "sd_mod" @@ -67,7 +67,7 @@ in { fileSystems."/var/www/binaergewitter" = { device = "/dev/nixos/binaergewitter"; fsType = "ext4"; - options = [ "nofail" "x-systemd.automount" "x-systemd.device-timeout=5s" "x-systemd.mount-timeout=5s" ]; + options = [ "nofail" ]; }; fileSystems."/var/lib/borgbackup" = { device = "/dev/nixos/backup"; |