No dns mullvad

This commit is contained in:
Maxiem Geldhof 2025-10-31 20:19:49 +01:00
parent c48405716c
commit f3f881df49
3 changed files with 24 additions and 4 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,9 @@
"config=/etc/rclone-mnt.conf"
];
};
fileSystems."/mnt/scratch" = {
device = "/dev/sdb";
fsType = "ext4";
};
}