nix-config/phone.nix
Donovan Glover 399e43a723
phone: Prepare configuration for main flake
This is part of merging the phone flake with the main nix-config flake.
2024-06-14 00:55:12 -04:00

24 lines
465 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 = {
mullvad = true;
hostName = "mobile-nixos";
stateVersion = "23.11";
};
desktop = {
phone = true;
};
};
}