mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
added simple file server
This commit is contained in:
parent
e356bdb781
commit
dfe6d6affb
2 changed files with 13 additions and 0 deletions
|
@ -19,6 +19,7 @@
|
||||||
./modules/protonvpn.nix
|
./modules/protonvpn.nix
|
||||||
./modules/tailscale.nix
|
./modules/tailscale.nix
|
||||||
./modules/vaultwarden.nix
|
./modules/vaultwarden.nix
|
||||||
|
./modules/vsftpd.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.alaska_backup_script = {
|
programs.alaska_backup_script = {
|
||||||
|
|
12
hosts/Alaska/modules/vsftpd.nix
Normal file
12
hosts/Alaska/modules/vsftpd.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{ ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
|
||||||
|
in
|
||||||
|
{
|
||||||
|
services.vsftpd = {
|
||||||
|
enable = true;
|
||||||
|
localUsers = true;
|
||||||
|
writeEnable = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue