From 13ca2bc6c50d1b129d9e51c3dbf2aa4b8789ce9c Mon Sep 17 00:00:00 2001 From: Ivan Kirilov Dimitrov Date: Sun, 4 Aug 2024 13:41:00 +0200 Subject: [PATCH] add doas to vps --- nixos/configs/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/configs/default.nix b/nixos/configs/default.nix index 876943a..980f3d1 100644 --- a/nixos/configs/default.nix +++ b/nixos/configs/default.nix @@ -21,6 +21,6 @@ in nonya = novaConfig (with mods; [ anon cryptocurrency ivand ]); ai = novaConfig (with mods; [ ai ivand ]); installer-iso = configWithModules { hardware = { }; modules = (with mods; [ grub base shell wireless ]); }; - vps = configWithModules { hardware = { nixpkgs.hostPlatform = system; }; modules = (with mods; [ base shell vps ]); }; + vps = configWithModules { hardware = { nixpkgs.hostPlatform = system; }; modules = (with mods; [ base shell security vps ]); }; }; }