mirror of
https://github.com/alyssadev/nixos.git
synced 2025-10-13 20:49:40 +10:00
Compare commits
2 commits
eddcd2eaf7
...
a4a26ac3a3
Author | SHA1 | Date | |
---|---|---|---|
|
a4a26ac3a3 | ||
|
11dc2a03fe |
1 changed files with 20 additions and 0 deletions
|
@ -27,6 +27,26 @@
|
|||
fsType = "btrfs";
|
||||
};
|
||||
|
||||
fileSystems."/mnt/storage/media/moviesoverlay" = {
|
||||
device = "overlay";
|
||||
fsType = "overlay";
|
||||
options = [
|
||||
"lowerdir=/mnt/storage/media/movies2:/mnt/storage/media/movies"
|
||||
"x-systemd.after=mnt-storage.mount"
|
||||
"x-systemd.requires=mnt-storage.mount"
|
||||
];
|
||||
};
|
||||
|
||||
fileSystems."/mnt/storage/media/tvoverlay" = {
|
||||
device = "overlay";
|
||||
fsType = "overlay";
|
||||
options = [
|
||||
"lowerdir=/mnt/storage/media/tv2:/mnt/storage/media/tv"
|
||||
"x-systemd.after=mnt-storage.mount"
|
||||
"x-systemd.requires=mnt-storage.mount"
|
||||
];
|
||||
};
|
||||
|
||||
swapDevices = [ ];
|
||||
|
||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue