Compare commits

..

2 commits

Author SHA1 Message Date
f6968d22a6 add disk config 2026-02-28 22:21:36 +07:00
e762372fcb add git cred cache 2026-02-28 21:56:05 +07:00
3 changed files with 14 additions and 0 deletions

View file

@ -3,6 +3,7 @@
./core/firmware.nix ./core/firmware.nix
./core/igpu.nix ./core/igpu.nix
./core/tpm.nix ./core/tpm.nix
./misc/disks.nix
]; ];
boot.initrd.availableKernelModules = [ "virtio_net" "virtio_pci" "virtio_mmio" "virtio_blk" "virtio_scsi" "virtio_console" ]; boot.initrd.availableKernelModules = [ "virtio_net" "virtio_pci" "virtio_mmio" "virtio_blk" "virtio_scsi" "virtio_console" ];

View file

@ -0,0 +1,12 @@
{ homelab, ... }: {
fileSystems = {
"/mnt/share" = {
device = homelab.disks.share;
fsType = "ext4";
};
"/mnt/data" = {
device = homelab.disks.data;
fsType = "ext4";
};
};
}

View file

@ -92,6 +92,7 @@
enable = true; enable = true;
settings = { settings = {
pull.rebase = "true"; pull.rebase = "true";
credential.helper = "cache --timeout=3600";
user = { user = {
name = git.user; name = git.user;
email = git.email; email = git.email;