diff --git a/modules/hardware/homelab.nix b/modules/hardware/homelab.nix index 1840222..85545a9 100644 --- a/modules/hardware/homelab.nix +++ b/modules/hardware/homelab.nix @@ -3,7 +3,6 @@ ./core/firmware.nix ./core/igpu.nix ./core/tpm.nix - ./misc/disks.nix ]; boot.initrd.availableKernelModules = [ "virtio_net" "virtio_pci" "virtio_mmio" "virtio_blk" "virtio_scsi" "virtio_console" ]; diff --git a/modules/hardware/misc/disks.nix b/modules/hardware/misc/disks.nix deleted file mode 100644 index 7d55f71..0000000 --- a/modules/hardware/misc/disks.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ homelab, ... }: { - fileSystems = { - "/mnt/share" = { - device = homelab.disks.share; - fsType = "ext4"; - }; - "/mnt/data" = { - device = homelab.disks.data; - fsType = "ext4"; - }; - }; -} \ No newline at end of file diff --git a/modules/home/core/cli.nix b/modules/home/core/cli.nix index d53655c..6dc7b7c 100644 --- a/modules/home/core/cli.nix +++ b/modules/home/core/cli.nix @@ -92,7 +92,6 @@ enable = true; settings = { pull.rebase = "true"; - credential.helper = "cache --timeout=3600"; user = { name = git.user; email = git.email;