1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2025-01-06 03:27:17 +03:00
mobile-nixos/examples/phosh/phosh.nix

25 lines
518 B
Nix
Raw Normal View History

#
# This file represents safe opinionated defaults for a basic Phosh system.
#
# NOTE: this file and any it imports **have** to be safe to import from
# an end-user's config.
#
{ pkgs, ... }:
{
services.xserver.desktopManager.phosh = {
enable = true;
group = "users";
};
programs.calls.enable = true;
environment.systemPackages = with pkgs; [
chatty # IM and SMS
kgx # Terminal
megapixels # Camera
];
hardware.sensor.iio.enable = true;
}