xbazzi 20e6156509
All checks were successful
Simple Mirror to GitHub / mirror (push) Successful in 30s
Feat: Add gitea workflow + some hyprland changes
2025-08-21 23:48:51 -06:00

52 lines
948 B
Nix
Executable File

{ config, pkgs, ... }:
{
fileSystems."/mnt/os-images" = {
device = "nas:/mnt/ALEXANDRIA/os-images";
fsType = "nfs";
options = [
"x-systemd.automount"
"noauto"
"rw"
"vers=4"
];
};
fileSystems."/docker-shared" = {
device = "nas:/mnt/ALEXANDRIA/docker-shared";
fsType = "nfs";
options = [
"auto"
"rw"
"vers=4"
];
};
fileSystems."/mnt/media" = {
device = "nas:/mnt/ALEXANDRIA/media";
fsType = "nfs";
options = [
"noauto"
"_netdev"
"rw"
"vers=4"
# On-demand mount (recommended): mounts when first accessed
"x-systemd.automount"
];
};
fileSystems."/mnt/school" = {
device = "nas:/mnt/ALEXANDRIA/school";
fsType = "nfs";
options = [
"noauto"
"_netdev"
"rw"
"vers=4"
# On-demand mount (recommended): mounts when first accessed
"x-systemd.automount"
];
};
}