NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(hosts/lairland): update mountpoints

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+8
+8
hosts/lairland/hardware-configuration.nix
··· 29 29 fsType = "ext4"; 30 30 }; 31 31 32 + # Seperate ext4 partition for local Git repo work 32 33 fileSystems."/workspaces" = 33 34 { device = "/dev/disk/by-uuid/3d45f467-8f59-4664-9d84-05b871c2d801"; 35 + fsType = "ext4"; 36 + }; 37 + 38 + # Dedicated 1TB HDD for Docker data outside of the regular /var/lib/docker path 39 + # Used for my Homelab setup to avoid filling up the main NixOS partition. 40 + fileSystems."/opt/docker-data" = 41 + { device = "/dev/disk/by-uuid/c2b43f4a-4582-4f0b-b542-c1dc0ed88673"; 34 42 fsType = "ext4"; 35 43 }; 36 44