[TASK] Add filemounts
This commit is contained in:
parent
07f08ce558
commit
9c7791ce86
@ -39,6 +39,8 @@ https://nixos.org/manual/nixos/stable/
|
|||||||
|
|
||||||
### install
|
### install
|
||||||
sudo nixos-rebuild switch
|
sudo nixos-rebuild switch
|
||||||
|
sudo /etc/nixos/setup-smb-credentials.sh
|
||||||
|
|
||||||
### cleanup
|
### cleanup
|
||||||
sudo nix-collect-garbage -d
|
sudo nix-collect-garbage -d
|
||||||
### optimize & cleanup
|
### optimize & cleanup
|
||||||
|
|||||||
@ -59,7 +59,6 @@
|
|||||||
|
|
||||||
# Sound
|
# Sound
|
||||||
services.pulseaudio.enable = false;
|
services.pulseaudio.enable = false;
|
||||||
security.rtkit.enable = true;
|
|
||||||
services.pipewire = {
|
services.pipewire = {
|
||||||
enable = true;
|
enable = true;
|
||||||
alsa.enable = true;
|
alsa.enable = true;
|
||||||
@ -67,6 +66,8 @@
|
|||||||
pulse.enable = true;
|
pulse.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
security.rtkit.enable = true;
|
||||||
|
|
||||||
# 32-bit Support für Steam
|
# 32-bit Support für Steam
|
||||||
hardware.graphics.enable32Bit = true;
|
hardware.graphics.enable32Bit = true;
|
||||||
services.pulseaudio.support32Bit = true;
|
services.pulseaudio.support32Bit = true;
|
||||||
|
|||||||
@ -4,6 +4,7 @@
|
|||||||
imports = [ # Include the results of the hardware scan.
|
imports = [ # Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./common.nix
|
./common.nix
|
||||||
|
./mounts.nix
|
||||||
./services.nix
|
./services.nix
|
||||||
./users/sebastian.nix
|
./users/sebastian.nix
|
||||||
# ./vm-guest.nix
|
# ./vm-guest.nix
|
||||||
|
|||||||
114
config/mounts.nix
Normal file
114
config/mounts.nix
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
# /etc/nixos/mounts.nix
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
# Credentials-Datei als Template erstellen
|
||||||
|
environment.etc."nixos/setup-smb-credentials.sh" = {
|
||||||
|
text = ''
|
||||||
|
#!/bin/sh
|
||||||
|
CREDS_FILE="/etc/nixos/secrets/truenas2.local"
|
||||||
|
|
||||||
|
if [ -f "$CREDS_FILE" ]; then
|
||||||
|
echo "Credentials file already exists: $CREDS_FILE"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Creating SMB credentials file..."
|
||||||
|
mkdir -p /etc/nixos/secrets
|
||||||
|
|
||||||
|
# Username aus Config oder abfragen
|
||||||
|
read -p "Enter SMB username: " username
|
||||||
|
read -sp "Enter SMB password: " password
|
||||||
|
echo
|
||||||
|
|
||||||
|
cat > "$CREDS_FILE" << EOF
|
||||||
|
username=$username
|
||||||
|
password=$password
|
||||||
|
domain=WORKGROUP
|
||||||
|
EOF
|
||||||
|
|
||||||
|
chmod 640 "$CREDS_FILE"
|
||||||
|
chown root:users "$CREDS_FILE"
|
||||||
|
|
||||||
|
echo "Credentials file created: $CREDS_FILE"
|
||||||
|
'';
|
||||||
|
mode = "0755";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Mount-Verzeichnisse erstellen
|
||||||
|
systemd.tmpfiles.rules = [
|
||||||
|
"d /mnt/betrieb 0755 sebastian users - -"
|
||||||
|
"d /mnt/familie 0755 sebastian users - -"
|
||||||
|
"d /mnt/medien 0755 sebastian users - -"
|
||||||
|
"d /mnt/home 0755 sebastian users - -"
|
||||||
|
];
|
||||||
|
|
||||||
|
# CIFS/SMB Mounts
|
||||||
|
fileSystems."/mnt/betrieb" = {
|
||||||
|
device = "//truenas2.local.fischer.im/Betrieb";
|
||||||
|
fsType = "cifs";
|
||||||
|
options = [
|
||||||
|
"noauto"
|
||||||
|
"credentials=/etc/nixos/secrets/truenas2.local"
|
||||||
|
"x-systemd.automount"
|
||||||
|
"x-systemd.idle-timeout=60"
|
||||||
|
"x-systemd.device-timeout=10"
|
||||||
|
"uid=sebastian"
|
||||||
|
"gid=users"
|
||||||
|
"file_mode=0644"
|
||||||
|
"dir_mode=0755"
|
||||||
|
"vers=3.0"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/mnt/familie" = {
|
||||||
|
device = "//truenas2.local.fischer.im/Familie";
|
||||||
|
fsType = "cifs";
|
||||||
|
options = [
|
||||||
|
"noauto"
|
||||||
|
"credentials=/etc/nixos/secrets/truenas2.local"
|
||||||
|
"x-systemd.automount"
|
||||||
|
"x-systemd.idle-timeout=60"
|
||||||
|
"x-systemd.device-timeout=10"
|
||||||
|
"uid=sebastian"
|
||||||
|
"gid=users"
|
||||||
|
"file_mode=0644"
|
||||||
|
"dir_mode=0755"
|
||||||
|
"vers=3.0"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/mnt/medien" = {
|
||||||
|
device = "//truenas2.local.fischer.im/Medien";
|
||||||
|
fsType = "cifs";
|
||||||
|
options = [
|
||||||
|
"noauto"
|
||||||
|
"credentials=/etc/nixos/secrets/truenas2.local"
|
||||||
|
"x-systemd.automount"
|
||||||
|
"x-systemd.idle-timeout=60"
|
||||||
|
"x-systemd.device-timeout=10"
|
||||||
|
"uid=sebastian"
|
||||||
|
"gid=users"
|
||||||
|
"file_mode=0644"
|
||||||
|
"dir_mode=0755"
|
||||||
|
"vers=3.0"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/mnt/home" = {
|
||||||
|
device = "//truenas2.local.fischer.im/sebastian";
|
||||||
|
fsType = "cifs";
|
||||||
|
options = [
|
||||||
|
"noauto"
|
||||||
|
"credentials=/etc/nixos/secrets/truenas2.local"
|
||||||
|
"x-systemd.automount"
|
||||||
|
"x-systemd.idle-timeout=60"
|
||||||
|
"x-systemd.device-timeout=10"
|
||||||
|
"uid=sebastian"
|
||||||
|
"gid=users"
|
||||||
|
"file_mode=0644"
|
||||||
|
"dir_mode=0755"
|
||||||
|
"vers=3.0"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user