No dns mullvad

This commit is contained in:
Maxiem Geldhof 2025-10-31 20:19:49 +01:00
parent c48405716c
commit 4b0da9db5e
10 changed files with 43 additions and 22 deletions

View file

@ -1,6 +1,9 @@
{ pkgs, config, ... }:
{
environment.systemPackages = [ pkgs.rclone ];
environment.systemPackages = [
pkgs.rclone
pkgs.samba
];
environment.etc."rclone-mnt.conf".text = ''
[myremote]
type = sftp
@ -20,4 +23,13 @@
"config=/etc/rclone-mnt.conf"
];
};
fileSystems."/mnt/scratch" = {
device = "/dev/sdb";
options = [
"defaults"
"discard"
"nofail"
];
};
}