added a bunch of nixos modules

This commit is contained in:
2026-09-01 23:16:16 +02:00
parent cfa9ff6a54
commit 054f3f9994
31 changed files with 302 additions and 19 deletions
+6
View File
@@ -0,0 +1,6 @@
{ ... }: {
flake.modules.nixos.mullvad = {
services.mullvad-vpn.enable = true;
services.mullvad-vpn.gui.enable = true;
};
}
+16
View File
@@ -0,0 +1,16 @@
{ self, ... }:
{
flake.modules.nixos.networking = { pkgs, ... }: {
imports = [
self.modules.nixos.mullvad
];
networking.networkmanager.enable = true;
environment.variables = {
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
};
};
}