mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-02-04 20:09:42 +01:00
da614fa655
This is a part of keeping the phone in sync with the laptop.
47 lines
858 B
Nix
47 lines
858 B
Nix
{ nix-config, pkgs, ... }:
|
|
|
|
let
|
|
inherit (builtins) attrValues;
|
|
in
|
|
{
|
|
imports = attrValues {
|
|
inherit (nix-config.nixosModules) system shell desktop hardware;
|
|
};
|
|
|
|
nixpkgs.overlays = attrValues nix-config.overlays;
|
|
home-manager.sharedModules = attrValues nix-config.homeManagerModules;
|
|
environment.systemPackages = attrValues nix-config.packages.${pkgs.system};
|
|
|
|
modules = {
|
|
system = {
|
|
hostName = "mobile-nixos";
|
|
stateVersion = "23.11";
|
|
phone = true;
|
|
};
|
|
|
|
desktop.phone = true;
|
|
hardware.phone = true;
|
|
};
|
|
|
|
environment = {
|
|
sessionVariables = {
|
|
LIBGL_ALWAYS_SOFTWARE = "true";
|
|
};
|
|
};
|
|
|
|
programs = {
|
|
calls.enable = true;
|
|
};
|
|
|
|
networking = {
|
|
wireless.enable = false;
|
|
wireguard.enable = true;
|
|
};
|
|
|
|
services = {
|
|
openssh.enable = true;
|
|
};
|
|
|
|
powerManagement.enable = true;
|
|
}
|