mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2025-01-06 03:27:17 +03:00
25 lines
518 B
Nix
25 lines
518 B
Nix
|
#
|
||
|
# 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;
|
||
|
}
|