nix-config/phone.nix
Donovan Glover 2bb4847198
phone: Remove mullvad-vpn service due to missing rpfilter
The mullvad-vpn service depends on iptables, which breaks support on the
PinePhone.
2024-06-14 09:57:52 -04:00

20 lines
419 B
Nix

{ self, pkgs, ... }:
let
inherit (builtins) attrValues;
in
{
imports = attrValues self.nixosModules;
nixpkgs.overlays = attrValues self.overlays;
home-manager.sharedModules = attrValues self.homeManagerModules;
environment.systemPackages = attrValues self.packages.${pkgs.system};
modules = {
system = {
phone = true;
hostName = "mobile-nixos";
stateVersion = "23.11";
};
};
}