diff --git a/hosts/desktop1/configuration.nix b/hosts/desktop1/configuration.nix index 13f820a..3c54462 100644 --- a/hosts/desktop1/configuration.nix +++ b/hosts/desktop1/configuration.nix @@ -27,19 +27,31 @@ fileSystems."/home/smayzy/Main" = { device = "nfs-srv1.internal.smayzy.ovh:/srv/NFS/Main"; fsType = "nfs"; - options = [ "x-systemd.automount" "noauto" "nfsvers=4" ]; + options = [ + "x-systemd.automount" + "noauto" + "nfsvers=4" + ]; depends = [ "/home" ]; }; fileSystems."/home/smayzy/ISO" = { device = "nfs-srv1.internal.smayzy.ovh:/srv/NFS/ISO"; fsType = "nfs"; - options = [ "x-systemd.automount" "noauto" "nfsvers=4" ]; + options = [ + "x-systemd.automount" + "noauto" + "nfsvers=4" + ]; depends = [ "/home" ]; }; fileSystems."/home/smayzy/Vault" = { device = "nfs-srv1.internal.smayzy.ovh:/srv/NFS/Vault"; fsType = "nfs"; - options = [ "x-systemd.automount" "noauto" "nfsvers=4" ]; + options = [ + "x-systemd.automount" + "noauto" + "nfsvers=4" + ]; depends = [ "/home" ]; }; diff --git a/modules/nix/audio/lmms.nix b/modules/nix/audio/lmms.nix index f51425a..d376037 100644 --- a/modules/nix/audio/lmms.nix +++ b/modules/nix/audio/lmms.nix @@ -1,4 +1,9 @@ -{ config, lib, pkgs, ... }: +{ + config, + lib, + pkgs, + ... +}: let inherit (lib) mkIf mkOption types; in