mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-10 16:08:45 +01:00
2bb4847198
The mullvad-vpn service depends on iptables, which breaks support on the PinePhone.
20 lines
419 B
Nix
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";
|
|
};
|
|
};
|
|
}
|