move around security

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-05-04 19:31:59 +03:00
parent 9510cc48e2
commit 4652ce19db
19 changed files with 103 additions and 308 deletions

View File

@ -4,12 +4,13 @@
...
}: let
inherit (lib) mkIf mkEnableOption;
cfg = config.locale.ukrainian;
in {
options = {
locale.ukrainian.enable =
mkEnableOption "enables ukrainian locale";
};
config = mkIf config.locale.ukrainian.enable {
config = mkIf cfg.enable {
i18n = let
locale = "uk_UA.UTF-8";
in {

View File

@ -1,6 +0,0 @@
{pkgs, ...}: {
services.mullvad-vpn = {
enable = true;
package = pkgs.mullvad-vpn;
};
}