update
Some checks are pending
/ Check (push) Waiting to run

This commit is contained in:
alydev 2026-01-15 23:36:01 +10:00
parent c1d507c5d8
commit 0a5788f051
2 changed files with 21 additions and 21 deletions

View file

@ -27,25 +27,25 @@
fsType = "btrfs"; fsType = "btrfs";
}; };
fileSystems."/mnt/storage/media/moviesoverlay" = { # fileSystems."/mnt/storage/media/moviesoverlay" = {
device = "overlay"; # device = "overlay";
fsType = "overlay"; # fsType = "overlay";
options = [ # options = [
"lowerdir=/mnt/storage/media/movies2:/mnt/storage/media/movies" # "lowerdir=/mnt/storage/media/movies2:/mnt/storage/media/movies"
"x-systemd.after=mnt-storage.mount" # "x-systemd.after=mnt-storage.mount"
"x-systemd.requires=mnt-storage.mount" # "x-systemd.requires=mnt-storage.mount"
]; # ];
}; # };
#
fileSystems."/mnt/storage/media/tvoverlay" = { # fileSystems."/mnt/storage/media/tvoverlay" = {
device = "overlay"; # device = "overlay";
fsType = "overlay"; # fsType = "overlay";
options = [ # options = [
"lowerdir=/mnt/storage/media/tv2:/mnt/storage/media/tv" # "lowerdir=/mnt/storage/media/tv2:/mnt/storage/media/tv"
"x-systemd.after=mnt-storage.mount" # "x-systemd.after=mnt-storage.mount"
"x-systemd.requires=mnt-storage.mount" # "x-systemd.requires=mnt-storage.mount"
]; # ];
}; # };
swapDevices = [ ]; swapDevices = [ ];

View file

@ -43,13 +43,13 @@
description = "aly"; description = "aly";
hashedPassword = "$y$j9T$Q.yFJjo9LMA8o.7Ac5uSr/$Y8pYIPSzCXHSd4nAlUohaaohwpquK6XEIjxFKq3J4s/"; hashedPassword = "$y$j9T$Q.yFJjo9LMA8o.7Ac5uSr/$Y8pYIPSzCXHSd4nAlUohaaohwpquK6XEIjxFKq3J4s/";
openssh.authorizedKeys.keys = import ../data/authorized_keys.nix; openssh.authorizedKeys.keys = import ../data/authorized_keys.nix;
extraGroups = [ "networkmanager" "wheel" "docker" ]; extraGroups = [ "networkmanager" "wheel" "docker" "media" ];
}; };
users.users.yasha = { users.users.yasha = {
isNormalUser = true; isNormalUser = true;
description = "yasha"; description = "yasha";
hashedPassword = "$y$j9T$EL1pxuTdXOyFXwbiT7P7s/$8Yzfss3xR9oqHDk29h.non19idZvSFDnHK.fqZaCRd9"; hashedPassword = "$y$j9T$EL1pxuTdXOyFXwbiT7P7s/$8Yzfss3xR9oqHDk29h.non19idZvSFDnHK.fqZaCRd9";
extraGroups = [ "networkmanager" "wheel" "docker" ]; extraGroups = [ "networkmanager" "wheel" "docker" "media" ];
}; };
# services.smartd = { # services.smartd = {